Introduction
#
Creator contracts make it easy to deploy and sell an NFT collectionThese contracts allow anyone to deploy an NFT collection in seconds. In addition, these contracts provide built-in sales mechanics, making it easy to both deploy a collection and sell the initial mints.
- Goerli Testnet UI - Test out deploying a contract
- 1155 Contract Code
- 721 Contract Code
#
Contract Addresses#
1155 Contracts#
721 Contracts#
Edition vs DropThese contracts can make two different types of NFT collections:
Edition
: All the NFTs share the same media asset.Drop
: All the NFTs have individual pieces of media.
#
1155 vs 7211155
: Editions are stored in the same contract. Recommended for creating editions.721
: All NFTs have unique id numbers. Recommended for creating drops.