An ERC721 contract that allows for the minting of multiple copies of the same token, with a flat fee for each copy.
This contract implements an ERC721 standard for minting non-fungible tokens (NFTs) with a unique feature: the ability to create multiple copies of a single token design.
Each copy of the token, referred to as an 'edition', is minted with a fixed flat fee, regardless of how many editions have already been created.
The contract provides functions for minting new editions, retrieving information about the token, including the total number of minted editions, and managing the minting process. You can interact with the contract using a web3 library or tools like Remix or Hardhat.
The contract uses the `ERC721Enumerable` base contract to handle ERC721 functionality and provide an efficient way to track and manage the editions of each token. It also includes a `flatFee` variable to store the fixed price per copy, and a `totalMinted` variable to keep track of the total number of editions minted for each token ID.
mint(address,uint256)setFlatFee(uint256)Press Enter to send your query
Powered by Neuron AI • Press Enter to send