Glossary · NFT & Web3
What is Mint?
Creating a new token (NFT or fungible) by writing it onto the blockchain — typically the first sale from a project, paid for with gas plus a mint price.
Last updated April 30, 2026
How it works
To "mint" something on a blockchain is to call a function on a smart contract that creates a new token and assigns it an owner. For NFTs, the contract has a mint() (or mintPublic(), mintAllowlist(), etc.) function — when you call it, the contract increments the supply, assigns the new token ID to your wallet, and emits a Transfer event from address zero (the mint marker) to you.
Two costs are involved:
- The mint price — set by the project. Could be free, could be 0.1 ETH per token, could be tiered.
- Gas — paid to the network for executing the contract call. Spikes during hyped mints (CryptoPunks-era mints sometimes cost more in gas than the NFT itself).
A typical NFT mint flow:
- Project announces mint date, price, and per-wallet limit.
- Allowlist (whitelist) phase — addresses pre-approved by the team get first access.
- Public mint — open to anyone with the contract address.
- Reveal — metadata (image, traits) often unlocks hours/days later to prevent sniping.
Example
A 10,000-piece NFT collection mints at 0.05 ETH per piece, capped at 2 per wallet. Math:
- Total raised if sold out: 10,000 × 0.05 = 500 ETH
- At ETH = $3,000: $1.5M gross to the project
- Plus secondary royalties (typically 5-10% on every resale)
For an individual minter:
- Mint cost: 0.05 ETH (~$150)
- Gas (during congestion): could be $20-200
- Total: $170-350 per NFT
If the floor price post-reveal lands at 0.2 ETH, the minter is up 4x on entry — minus gas, which is gone forever even if the NFT trends to zero.
Why it matters
Minting is where most NFT money is actually made — and lost.
For projects:
- Mint is the primary revenue event. Royalties on secondary sales are a bonus; the mint itself funds the team.
- Allowlist design matters. A 50% allowlist allocation builds community but limits public hype; an open mint is a free-for-all that can bot-out genuine fans.
- Failed mints (under-subscribed) are reputational poison. Better to mint a smaller supply and sell out than a big supply that fizzles.
For minters:
- Mint is the cheapest entry point — secondary buyers always pay more.
- Mint risk is real. Many projects have rugged immediately post-mint (founders disappear, no roadmap delivered). Allowlists from doxxed founders mitigate but don't eliminate this.
- Gas wars during hyped mints can flip the economics. A 0.05 ETH mint with $300 gas is effectively a 0.15 ETH mint. Watch the gas price oracle before submitting.
- "Free mints" still cost gas and have generated some of the largest exit-scams (Goblintown was an exception that worked; most don't).
Beyond NFTs, "mint" applies to fungible tokens too — when USDC is created in exchange for $1 from a corporate buyer, Circle is "minting" USDC. Most people just don't use the word for fungibles.
The minting model has been criticized for incentivizing "dumping" — mint cheap, flip on day one, leave bagholders. Some projects experiment with bonding curves or Dutch auctions to align incentives, but the standard fixed-price mint remains dominant.