What is an NFT and how does an NFT marketplace work?
An NFT (Non-Fungible Token) is a blockchain token that represents ownership of a unique digital or physical asset each token has a unique ID and cannot be exchanged 1:1 with another token (unlike fungible tokens like ETH or USDC where each unit is identical). NFT ownership is recorded on the blockchain the token's ownership history, transfer history, and associated metadata are publicly verifiable and immutable. An NFT marketplace is a platform where NFTs are minted (created), bought, sold, and traded. A primary marketplace facilitates the original creator selling NFTs to buyers ClickMasters builds primary drop platforms with mint pages, allow lists, and reveal mechanics. A secondary marketplace facilitates peer-to-peer resale sellers list their NFTs, buyers purchase at the listed price or make offers. Creator royalties (ERC-2981) specify a percentage of secondary sales that flows back to the original creator automatically when the marketplace honours the standard.
What is ERC-721A and why is it used for large NFT collections?
ERC-721A is Azuki's gas-optimised implementation of the ERC-721 standard, specifically designed for batch minting large NFT collections. Standard ERC-721 minting requires a separate SSTORE operation for each token minting 10 NFTs in one transaction costs approximately the same gas as 10 separate transactions. ERC-721A exploits the sequential token ID structure of large collections to pack multiple token ownership records into fewer storage slots, reducing the cost of batch minting: minting 5 ERC-721A tokens in one transaction costs approximately the same as minting 1 standard ERC-721 token. For a 10,000-piece PFP collection where many minters will buy 2-5 NFTs at once, ERC-721A reduces gas costs by 60-80% for typical mint transactions a significant UX improvement. The trade-off: read operations (querying token owner) are slightly more expensive than standard ERC-721, but read operations are free (no gas) when called off-chain.
What is lazy minting and when should I use it?
Lazy minting defers the on-chain minting of an NFT until the first sale the NFT's metadata and creator signature are stored off-chain, and the NFT is minted (written to the blockchain) when a buyer purchases it for the first time. The buyer pays the gas for minting rather than the creator. Benefits: creators can list unlimited NFTs without paying gas upfront (no inventory cost), and unsold NFTs never incur gas costs. The limitation: until minted, the NFT does not exist on-chain it cannot be transferred, listed on other platforms, or verified by wallet apps. Lazy minting is appropriate for: individual creators with large portfolios (platforms like Rarible and Foundation use lazy minting for creator uploads), small collections where minting all tokens upfront would be prohibitively expensive, and platforms where many NFTs may never sell. For large collections where all or most tokens are expected to sell, traditional minting (paying gas at mint) is simpler and produces immediately on-chain tokens.
How are creator royalties enforced on NFT secondary sales?
ERC-2981 is an Ethereum standard that specifies a royalty percentage and recipient address on-chain in the NFT contract. When a marketplace queries the NFT contract (`royaltyInfo(tokenId, salePrice)` returns `(royaltyRecipient, royaltyAmount)`), it can automatically deduct the royalty from the sale proceeds and pay the creator. The limitation: ERC-2981 is a voluntary standard marketplaces are not required by the Ethereum protocol to honour it. OpenSea, LooksRare, X2Y2, and most major marketplaces honour ERC-2981. Some newer marketplaces launched 'royalty-optional' models in 2022-2023, allowing buyers to bypass royalties. On-chain royalty enforcement (via operator filter registry or transfer hooks that only allow sales through royalty-honouring marketplaces) partially addresses this but restricts secondary market liquidity. ClickMasters implements ERC-2981 as the standard royalty mechanism and advises on the trade-offs of on-chain enforcement vs. voluntary standards.