@fugitivesclub/nft-cli
Version:
This CLI allow you to mint your NFT's
26 lines (25 loc) • 679 B
TypeScript
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;
}