UNPKG

@fugitivesclub/nft-cli

Version:
26 lines (25 loc) 679 B
import { CategoryNFT, HederaEnvironment } from '@xact-wallet-sdk/nft'; export declare class HederaAccount { accountId: string; privateKey: string; environment: HederaEnvironment; } export declare class CustomFee { numerator: number; denominator: number; fallbackFee: number; collectorAccountId: string; } export declare class Metadata { name: string; symbol: string; category: CategoryNFT; creator: string; customRoyaltyFee?: CustomFee[] | null; customProperties?: Record<string, unknown> | null; } export declare class Configuration { nftStorageApiKey: string; hederaAccount: HederaAccount; metadata?: Metadata; }