Deploy a modular NFT Collection contract
The NFT Collection contract creates a unique collection of NFTs based on the ERC-721A standard. NFTs are minted to the creator’s wallet as they are added to the collection. NFTs are still transferable, able to be sold on a marketplace, and perform any other actions as defined by ERC-721A.
For advanced use-cases requiring , NFT Collection includes signature-based minting capabilities.
NFT Collection contract does not have lazy minting capabilities or claim conditions. If you’d prefer to define specific settings such as claim limits, start and end times to claim, and more, please refer to the NFT Drop contract.
- Create a 1-of-many collection of photography, artwork, or other media to be collected or sold on a marketplace
- Create a 1-of-1 NFT which provide special utility or can be used to gate access to an application
- Create a community-made collection of NFTs using signature-minting
- Mintable
- BatchMetadata
- Transferable
Navigate to Explore, locate the Modular NFT Collection contract, and select the Deploy Now button.
Fill in the Contract Metadata including Name, Symbol, Description, and Image.
Contract Metadata serves as your unique identifier.
Select the preferred chain you want to deploy on and select Deploy Now.
If you are signed in with an EOA wallet, you will be prompted to sign the transaction. After that your contract is deployed and you can begin configuring the modules.
This contract is created using the modular contract framework. Modules on this contract are upgradeable. Learn more about Modular Contracts.
To configure the modules, navigate to the Modules view:
- Configure the MintableERC721 module to facilitate minting of ERC721 tokens with sales settings
- Configure BatchMetadataERC721 to upload the NFT metadata
- Configure the Transferable721 Module to restrict transfers, if desired.