InitializeCandyMachineInstructionAccounts: {
    authority?: PublicKey | Pda;
    authorityPda?: PublicKey | Pda;
    candyMachine: PublicKey | Pda;
    collection: PublicKey | Pda;
    collectionUpdateAuthority: Signer;
    mplCoreProgram?: PublicKey | Pda;
    payer?: Signer;
    systemProgram?: PublicKey | Pda;
    sysvarInstructions?: PublicKey | Pda;
}

Type declaration

  • Optional authority?: PublicKey | Pda

    Candy Machine authority. This is the address that controls the upate of the candy machine.

  • Optional authorityPda?: PublicKey | Pda

    Authority PDA used to verify minted NFTs to the collection.

  • candyMachine: PublicKey | Pda

    Candy Machine account. The account space must be allocated to allow accounts larger than 10kb.

  • collection: PublicKey | Pda

    Mint account of the collection.

  • collectionUpdateAuthority: Signer

    Update authority of the collection. This needs to be a signer so the candy machine can approve a delegate to verify minted NFTs to the collection.

  • Optional mplCoreProgram?: PublicKey | Pda

    Token Metadata program.

  • Optional payer?: Signer

    Payer of the transaction.

  • Optional systemProgram?: PublicKey | Pda

    System program.

  • Optional sysvarInstructions?: PublicKey | Pda

    Instructions sysvar account.

Generated using TypeDoc