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

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

List of accounts required:

  1. [writable] Mint counter PDA. The PDA is derived using the seed ["asset_mint_limit", asset mint guard id, mint key, candy guard pubkey, candy machine pubkey].
  2. [] Address the Core Asset.

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