Type alias DeleteCandyMachineInput

DeleteCandyMachineInput: {
    candyMachine: PublicKey;
    candyGuard?: PublicKey;
    authority?: Signer;
    candyGuardAuthority?: Signer;
}

Type declaration

  • candyMachine: PublicKey

    The address of the Candy Machine account to delete.

  • Optional candyGuard?: PublicKey

    The address of the Candy Guard associated with the Candy Machine account. When provided the Candy Guard will be deleted as well.

    Default Value

    Defaults to not being deleted.

  • Optional authority?: Signer

    The authority of the Candy Machine account.

    This is the account that will received the rent-exemption lamports from the Candy Machine account.

    Default Value

    metaplex.identity()

  • Optional candyGuardAuthority?: Signer

    The authority of the Candy Guard account to delete.

    This is only required if candyGuard is provided and the Candy Guard authority is not the same as the Candy Machine authority.

    Default Value

    authority

Generated using TypeDoc