Type alias CandyMachineItem

CandyMachineItem: {
    index: number;
    minted: boolean;
    name: string;
    uri: string;
}

Represent an item inside a Candy Machine that has been or will eventually be minted into an NFT.

It only contains the name and the URI of the NFT to be as the rest of the data is shared by all NFTs and lives in the Candy Machine configurations (e.g. symbol, creators, etc).

Type declaration

  • Readonly index: number

    The index of the config line.

  • Readonly minted: boolean

    Whether the item has been minted or not.

  • Readonly name: string

    The name of the NFT to be.

  • Readonly uri: string

    The URI of the NFT to be, pointing to some off-chain JSON Metadata.

Generated using TypeDoc