NftMintLimit: {
    id: number;
    limit: number;
    requiredCollection: PublicKey;
}

Gaurd to set a limit of mints per wallet based on holding a specific NFT.

List of accounts required:

  1. [writable] Mint counter PDA. The PDA is derived using the seed ["nft_mint_limit", nft mint guard id, mint key, candy guard pubkey, candy machine pubkey].
  2. [] Token account of the NFT.
  3. [] Metadata account of the NFT.

Type declaration

  • id: number

    Unique identifier of the mint limit.

  • limit: number

    Limit of mints per individual mint address.

  • requiredCollection: PublicKey

    Required collection of the mint.

Generated using TypeDoc