What is Minting?
Minting is the act of creating a new digital asset — typically an NFT — and recording its existence on a blockchain. When you mint an NFT, you execute a smart contract transaction that assigns a unique token ID to a piece of content (image, video, audio, or metadata), linking it permanently to a blockchain address.
Minting is the crypto-native equivalent of printing a certificate of authenticity. Once minted, the NFT exists on-chain forever (unless burned), can be transferred, sold, or used in applications that support its standard.
How Minting Works
The Process
-
Upload content: The actual media file (image, video) is uploaded to a decentralized storage system like IPFS or Arweave, or to a centralized server. The content itself does not live on-chain — only a reference (URI) to it does.
-
Create metadata: A JSON file containing the NFT’s name, description, attributes, and image URL is also stored off-chain. The token’s smart contract links to this metadata.
-
Call the mint function: You interact with the NFT contract (e.g., an ERC-721 or ERC-1155 contract), calling
mint()orsafeMint(). This:- Assigns the next token ID
- Sets you as the owner
- Stores the token’s metadata URI on-chain
- Emits a Transfer event (from address(0) to your address)
-
Pay gas: The minting transaction costs gas. On Ethereum, this ranges from $5 to $100+ depending on network congestion. On Layer 2s like Polygon or Base, minting costs pennies.
Minting Models
| Model | How It Works | Example |
|---|---|---|
| Direct mint | User pays gas + mint price directly to the contract | Most NFT drops on Ethereum |
| Lazy minting | Creator signs an off-chain voucher; buyer pays gas to mint at purchase time | OpenSea’s default for new creators |
| Free mint | No mint price, only gas costs (often called “free-to-mint”) | Nouns, XCOPY drops |
| Allowlist mint | Only pre-approved wallet addresses can mint, at a set price | Bored Apes, Azuki |
| Public mint | Anyone can mint, usually with a per-wallet limit | Most PFP collections |
| Dutch auction | Price starts high and decreases over time until sellout | Art Blocks, Nouns |
Minting Costs Breakdown
On Ethereum Mainnet
- Mint price: Set by the creator (0 ETH for free mints, 0.01-2 ETH for paid mints)
- Gas fee: $10-$200 depending on congestion
- Total per mint: $50-$5,000+
On Layer 2 (Polygon, Base, Arbitrum)
- Mint price: Same as above
- Gas fee: $0.01-$0.50
- Total per mint: Mint price + cents
On Solana
- Gas fee: ~$0.001
- Total per mint: Mint price + negligible gas
Minting vs Buying on the Secondary Market
| Factor | Minting | Secondary Market |
|---|---|---|
| Price | Usually cheaper (mint price) | Market-determined (can be higher) |
| Risk | Collection may flop, floor goes below mint price | Can see market demand before buying |
| Selection | Random (you get whatever token ID) | Can choose specific traits/NFTs |
| Royalties | No royalties paid (goes to creator as mint revenue) | Royalties paid to creator on resale |
| Timing | Limited window (mint phase only) | Available anytime |
Notable Minting Events
- CryptoPunks (2017): Originally free to claim for anyone with an ETH wallet. Now worth millions each. One of the most valuable free mints in history.
- Bored Ape Yacht Club (2021): Minted at 0.08 ETH (
$200 at the time). Floor peaked at 153 ETH ($490K) — a 2,400x return. - Otherdeed for Otherside (May 2022): Largest NFT mint in history. $320M in mint revenue in a single day. Crashed Ethereum gas fees to 8,000+ gwei during the mint.
- Nouns (2021-present): One NFT auctioned every day, forever. Proceeds fund the Nouns DAO treasury. Over $30M+ raised to date.
Risks of Minting
- Smart contract bugs: If the minting contract has a vulnerability, funds can be drained. Always check if the contract is audited.
- Rug pulls: Anonymous creators mint a collection, collect the mint revenue, and disappear. The NFTs become worthless.
- Phishing during mint: Fake minting links impersonate real collections to drain wallets.
- Gas wars: Popular mints cause gas price spikes. Users overpay for gas and may still fail to get an NFT.
Frequently Asked Questions
Q: Can I mint an NFT for free? A: Yes. “Lazy minting” on OpenSea lets creators mint without paying gas — the buyer pays when purchasing. On Polygon or Solana, gas costs are negligible.
Q: What happens when a collection is “sold out”? A: No more NFTs can be minted. To acquire one, you must buy on the secondary market at the current floor price.
Q: Is minting the same as creating? A: Not exactly. Creating involves making the artwork and metadata. Minting is the on-chain transaction that registers the NFT. You can create without minting (the content exists but isn’t on-chain yet).