Type alias DeleteCandyMachineV2BuilderParams

DeleteCandyMachineV2BuilderParams: {
    candyMachine: Pick<CandyMachineV2, "address" | "collectionMintAddress">;
    authority?: undefined | Signer;
    instructionKey?: undefined | string;
}

Type declaration

  • candyMachine: Pick<CandyMachineV2, "address" | "collectionMintAddress">

    The Candy Machine to delete. We need the address of the Candy Machine as well as the address of the potential collection since we will need to delete the PDA account that links the Candy Machine to the collection.

    If the Candy Machine does not have a collection, simply set collectionMintAddress to null.

  • Optional authority?: undefined | Signer

    The Signer authorized to update the candy machine.

    Default Value

    metaplex.identity()

  • Optional instructionKey?: undefined | string

    A key to distinguish the instruction that deletes the Candy Machine.

Generated using TypeDoc