Type alias NftBurnGuardSettings

NftBurnGuardSettings: {
    requiredCollection: PublicKey;
}

The nftBurn guard restricts the mint to holders of a predefined NFT Collection and burns the holder's NFT when minting.

This means the mint address of the NFT to burn must be passed when minting. This guard alone does not limit how many times a holder can mint. A holder can mint as many times as they have NFTs from the required collection to burn.

This object defines the settings that should be provided when creating and/or updating a Candy Machine if you wish to enable this guard.

See

NftBurnGuardMintSettings for more information on the mint settings of this guard.

Type declaration

  • requiredCollection: PublicKey

    The mint address of the required NFT Collection.

Generated using TypeDoc