> For the complete documentation index, see [llms.txt](https://8bit-1.gitbook.io/solibrary/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://8bit-1.gitbook.io/solibrary/nft-mint-limit-guard.md).

# NFT Mint Limit Guard

It can be considered as a combination of the [NFT Gate](https://developers.metaplex.com/core-candy-machine/guards/nft-gate) and [Mint Limit](https://developers.metaplex.com/core-candy-machine/guards/mint-limit) Guard, based on NFT Addresses instead of wallets.

The limit is set per NFT Collection, per candy machine and per identifier — provided in the settings — to allow multiple nft mint limits within the same Core Candy Machine.

Core Candy Machine

Owner: Core Candy Machine Core Program

Core Candy Guard

Owner: Core Candy Guard Program

GuardsNftMintLimit- Limit- ID- Required Collection...

NFT Mint Counter PDA

Seeds: candyGuard, candyMachine, id, mint

Mint from

*Candy Guard Program*

Access Control

Mint from

*Core Candy Machine Program*

Mint Logic

Asset

[React Flow](https://reactflow.dev/)

### Guard Settings <a href="#guard-settings" id="guard-settings"></a>

The Mint Limit guard contains the following settings:

* **ID**: A unique identifier for this guard. Different identifiers will use different counters to track how many items were minted by providing a given NFT. This is particularly useful when using groups of guards as we may want each of them to have a different mint limit.
* **Limit**: The maximum number of mints allowed per NFT for that identifier.
* **Required Collection**: The mint address of the required NFT Collection. The NFT we provide as proof when minting must be part of this collection.

Set up a Candy Machine using the NFT Mint Limit guard

JavaScript

```
create(umi, {
  // ...
  guards: {
    nftMintLimit: some({
      id: 1,
      limit: 5,
      requiredCollection: requiredCollectionNft.publicKey,
    }),
  },
});
```

API References: [create](https://mpl-core-candy-machine.typedoc.metaplex.com/functions/create.html), [MintLimit](https://mpl-core-candy-machine.typedoc.metaplex.com/types/NftMintLimit.html)

### Mint Settings <a href="#mint-settings" id="mint-settings"></a>

The NFT Mint Limit guard contains the following Mint Settings:

* **ID**: A unique identifier for this guard.
* **Mint**: The mint address of the NFT to provide as proof that the payer owns an NFT from the required collection.

Note that, if you’re planning on constructing instructions without the help of our SDKs, you will need to provide these Mint Settings and more as a combination of instruction arguments and remaining accounts. See the [Core Candy Guard’s program documentation](https://github.com/metaplex-foundation/mpl-core-candy-machine/tree/main/programs/candy-guard#nftmintlimit) for more details.

Mint with the NFT Mint Limit Guard

JavaScript

You may pass the Mint Settings of the Mint Limit guard using the `mintArgs` argument like so.

```
mintV1(umi, {
  // ...
  mintArgs: {
    nftMintLimit: some({ id: 1, mint: nftToVerify.publicKey }),
  },
});
```

### Route Instruction <a href="#route-instruction" id="route-instruction"></a>

*The NFT Mint Limit guard does not support the route instruction.*
