@cks-systems/manifest-sdk
Version:
TypeScript SDK for Manifest
14 lines (13 loc) • 350 B
TypeScript
import { bignum } from '@metaplex-foundation/beet';
/**
* Converts a beet.bignum to a number.
*
* @param n The number to convert
*/
export declare function toNum(n: bignum): number;
/**
* Converts a beet.bignum to a number after dividing by 10**18
*
* @param n The number to convert
*/
export declare function convertU128(n: bignum): number;