UNPKG

@leda-mint-io/candymachine-client-sdk

Version:

Metaplex Candy Machine Client SDK

26 lines (25 loc) 809 B
export declare type Account = string | string[] | undefined; /** * The Manifest object for a given asset. * This object holds the contents of the asset's JSON file. * Represented here in its minimal form. */ export declare type Manifest = { image: string; animation_url: string; name: string; symbol: string; seller_fee_basis_points: number; properties: { files: Array<{ type: string; uri: string; }>; creators: Array<{ address: string; share: number; }>; }; }; export declare type UnwrapPromise<T> = T extends Promise<infer Return> ? Return : T; export declare type NumberToString<T extends number | string> = T extends infer T ? (T extends number ? string : T) : never;