MintFromCandyMachineV2InstructionAccounts: {
    authorityPda?: PublicKey | Pda;
    authorizationRules?: PublicKey | Pda;
    authorizationRulesProgram?: PublicKey | Pda;
    candyMachine: PublicKey | Pda;
    collectionDelegateRecord?: 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 | Signer;
    nftMintAuthority?: Signer;
    nftOwner: PublicKey | Pda;
    payer?: Signer;
    recentSlothashes?: PublicKey | Pda;
    splAtaProgram?: PublicKey | Pda;
    splTokenProgram?: PublicKey | Pda;
    systemProgram?: PublicKey | Pda;
    sysvarInstructions?: PublicKey | Pda;
    token?: PublicKey | Pda;
    tokenMetadataProgram?: PublicKey | Pda;
    tokenRecord?: 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.

  • Optional authorizationRules?: PublicKey | Pda

    Token Authorization rules account for the collection metadata (if any).

  • Optional authorizationRulesProgram?: PublicKey | Pda

    Token Authorization Rules program.

  • candyMachine: PublicKey | Pda

    Candy machine account.

  • Optional collectionDelegateRecord?: PublicKey | Pda

    Collection authority or metadata delegate record.

  • 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 | Signer

    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.

  • nftOwner: PublicKey | Pda

    NFT account owner.

  • Optional payer?: Signer

    Payer for the transaction and account allocation (rent).

  • Optional recentSlothashes?: PublicKey | Pda

    SlotHashes sysvar cluster data.

  • Optional splAtaProgram?: PublicKey | Pda

    SPL Associated Token program.

  • Optional splTokenProgram?: PublicKey | Pda

    SPL Token program.

  • Optional systemProgram?: PublicKey | Pda

    System program.

  • Optional sysvarInstructions?: PublicKey | Pda

    Instructions sysvar account.

  • Optional token?: PublicKey | Pda

    Destination token account (required for pNFT).

  • Optional tokenMetadataProgram?: PublicKey | Pda

    Token Metadata program.

  • Optional tokenRecord?: PublicKey | Pda

    Token record (required for pNFT).

Generated using TypeDoc