MintFromCandyMachineInstructionAccounts: {
    authorityPda?: PublicKey | Pda;
    candyMachine: PublicKey | Pda;
    collectionAuthorityRecord?: PublicKey | Pda;
    collectionMasterEdition?: PublicKey | Pda;
    collectionMetadata?: PublicKey | Pda;
    collectionMint: PublicKey | Pda;
    collectionUpdateAuthority: PublicKey | Pda;
    mintAuthority: Signer;
    nftMasterEdition?: PublicKey | Pda;
    nftMetadata?: PublicKey | Pda;
    nftMint: PublicKey | Pda;
    nftMintAuthority?: Signer;
    payer?: Signer;
    recentSlothashes?: PublicKey | Pda;
    systemProgram?: PublicKey | Pda;
    tokenMetadataProgram?: PublicKey | Pda;
    tokenProgram?: PublicKey | Pda;
}

Type declaration

  • Optional authorityPda?: PublicKey | Pda

    Candy machine authority account. This is the account that holds a delegate to verify an item into the collection.

  • candyMachine: PublicKey | Pda

    Candy machine account.

  • Optional collectionAuthorityRecord?: PublicKey | Pda

    Collection authority record account is either the delegated authority record (legacy) or a metadata delegate record for the authority_pda. The delegate is set when a new collection is set to the candy machine.

  • Optional collectionMasterEdition?: PublicKey | Pda

    Master edition account of the collection NFT.

  • Optional collectionMetadata?: PublicKey | Pda

    Metadata account of the collection NFT.

  • collectionMint: PublicKey | Pda

    Mint account of the collection NFT.

  • collectionUpdateAuthority: PublicKey | Pda

    Update authority of the collection NFT.

  • mintAuthority: Signer

    Candy machine mint authority (mint only allowed for the mint_authority).

  • Optional nftMasterEdition?: PublicKey | Pda

    Master edition account of the NFT. The account will be initialized if necessary.

  • Optional nftMetadata?: PublicKey | Pda

    Metadata account of the NFT. This account must be uninitialized.

  • nftMint: PublicKey | Pda

    Mint account of the NFT. The account will be initialized if necessary.

  • Optional nftMintAuthority?: Signer

    Mint authority of the NFT. In most cases this will be the owner of the NFT.

  • Optional payer?: Signer

    Payer for the transaction and account allocation (rent).

  • Optional recentSlothashes?: PublicKey | Pda

    SlotHashes sysvar cluster data.

  • Optional systemProgram?: PublicKey | Pda

    System program.

  • Optional tokenMetadataProgram?: PublicKey | Pda

    Token Metadata program.

  • Optional tokenProgram?: PublicKey | Pda

    SPL Token program.

Generated using TypeDoc