Minting

NFT Updated Feb 2026

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

  1. 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.

  2. 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.

  3. Call the mint function: You interact with the NFT contract (e.g., an ERC-721 or ERC-1155 contract), calling mint() or safeMint(). 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)
  4. 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

ModelHow It WorksExample
Direct mintUser pays gas + mint price directly to the contractMost NFT drops on Ethereum
Lazy mintingCreator signs an off-chain voucher; buyer pays gas to mint at purchase timeOpenSea’s default for new creators
Free mintNo mint price, only gas costs (often called “free-to-mint”)Nouns, XCOPY drops
Allowlist mintOnly pre-approved wallet addresses can mint, at a set priceBored Apes, Azuki
Public mintAnyone can mint, usually with a per-wallet limitMost PFP collections
Dutch auctionPrice starts high and decreases over time until selloutArt 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

FactorMintingSecondary Market
PriceUsually cheaper (mint price)Market-determined (can be higher)
RiskCollection may flop, floor goes below mint priceCan see market demand before buying
SelectionRandom (you get whatever token ID)Can choose specific traits/NFTs
RoyaltiesNo royalties paid (goes to creator as mint revenue)Royalties paid to creator on resale
TimingLimited 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).