NFT platform V2 - Last update, aug 2026

Learn

NFT glossary: every term, plain language

New to NFTs? Here's the plain-English meaning of the words you'll run into while creating, minting and launching, no jargon.

What is an NFT and why does ownership live on a blockchain?

A non-fungible token (NFT) is a unique record written to a blockchain. Unlike a JPEG saved on a hard drive, the ownership entry on the chain cannot be copied or quietly altered by a single party. Each NFT has its own token ID, which points to metadata describing what the token represents, whether that is a piece of digital art, a membership pass or an in-game item. Two NFTs can look identical and still be separate tokens with separate histories, which is what non-fungible means: not interchangeable the way dollars or SOL are.

The blockchain that records the NFT matters for speed and cost. Ethereum is the most established chain for NFTs, but transactions can be expensive when the network is busy. Solana processes transactions faster and at a fraction of the cost, which is why many high-volume collections launch there. Ethereum-compatible chains like Polygon or Base inherit Ethereum's tooling but aim for lower fees. iMintify supports Solana and the major EVM-compatible chains, so you deploy to the chain that fits your audience and your budget, not the one a platform forces on you.

Minting, deploying and gas: what actually happens on-chain

Minting is the act of writing an NFT to the blockchain for the first time. Before minting can happen, someone has to deploy a smart contract: the on-chain program that defines your collection's rules, its supply cap, the price per mint, who is on the allowlist and how royalties are calculated. Deploying costs gas because it is a complex transaction. Once the contract is live, each individual mint is a simpler transaction and costs less gas, though the cost still varies with network congestion. On Ethereum mainnet, a single deployment can cost anywhere from a few dollars to over a hundred dollars on a busy day. On Solana, the same step typically costs a fraction of a cent.

Gas is paid in the native currency of the chain: ETH on Ethereum, SOL on Solana. It goes to the validators who process your transaction, not to iMintify or any marketplace. This is the fee you cannot avoid regardless of which platform you use to create your contract. What you can do is time your deployment. On Ethereum, gas prices drop during low-traffic periods, typically late night UTC on weekdays. Tools like Etherscan's gas tracker show the current base fee so you can pick your window. On Solana, fees are stable enough that timing is rarely a concern.

Smart contracts, token standards and what they control

A smart contract is code that lives on the blockchain and runs automatically when conditions are met. For an NFT collection, the contract handles minting, tracks who owns which token and enforces royalties on secondary sales. On Ethereum, the two dominant standards are ERC-721, where every token is unique under the contract, and ERC-1155, which allows multiple copies of the same item to be managed under one contract. ERC-1155 is efficient for editions or games where you want thousands of identical items alongside rarer ones. On Solana, the equivalent is the SPL token standard, which governs both fungible tokens and NFTs.

Royalties are written into the contract as a percentage, for example five percent of every secondary sale routed back to the creator's wallet. Whether marketplaces actually enforce that percentage depends on the marketplace. Some have made royalties optional to attract volume. On-chain royalty enforcement through standards like EIP-2981 on Ethereum or programmable royalties on Solana gives creators more leverage, but it is not a guarantee that every resale will pay out. When you set up your contract in iMintify, you choose the royalty percentage and the recipient wallet at deploy time.

Metadata, IPFS and why storage choices matter long-term

Metadata is the JSON file attached to each NFT that tells marketplaces what to display: the name, description, image URL and any traits or attributes. If that JSON file disappears or the URL it references goes offline, the NFT still exists on-chain but shows as a broken image everywhere. This is why storage matters. Keeping metadata on a regular web server means one hosting bill going unpaid can erase every image in your collection. IPFS, the InterPlanetary File System, is a decentralized network where files are addressed by their content hash rather than a domain name. If the file exists anywhere on IPFS, it is retrievable. Arweave goes a step further with a one-time fee model designed for permanent storage.

When you upload assets through iMintify, the platform pins your files to IPFS so the metadata your contract references is not dependent on a single server. Traits defined in your metadata are what marketplaces use to calculate rarity. Each trait has a type, for example Background, and a value, for example Red. A collection of ten thousand PFP NFTs might have twenty trait types with varying numbers of possible values. Rarer values appear in fewer tokens. Rarity is not set by you directly: it emerges from how many tokens share each combination of trait values.

Allowlists, public sales and how minting phases work

An allowlist, sometimes called a whitelist, is a set of wallet addresses that can mint before or at different terms than the general public. Allowlist spots are typically earned through community participation, early sign-ups or holding a previous collection. In the contract, allowlist addresses are often stored in a Merkle tree, which lets the contract verify membership without storing every address individually on-chain, saving gas. A common launch structure has an allowlist phase with a lower price or a guaranteed mint window, followed by a public phase where anyone can mint until supply runs out. If you sell out during the allowlist phase, the public sale never opens.

Floor price is the lowest asking price for any NFT in a collection on the secondary market. It is not set by the creator but by sellers. A project can launch at 0.1 ETH and see its floor drop to 0.01 ETH if demand falls, or rise above mint price if demand exceeds supply. Watching floor price movement tells you something about community sentiment, but it is a lagging signal and easy to manipulate with wash trading. Airdropping tokens, sending NFTs or fungible tokens directly to wallets at no cost, is another tool creators use to reward holders or bootstrap a new collection's distribution.

Wallets, marketplaces and where your NFT lives after mint

A crypto wallet stores the private key that proves you control an address on the blockchain. Popular options include MetaMask for EVM chains and Phantom for Solana. The wallet does not hold your NFT the way a folder holds a file: the NFT record lives on-chain, and your wallet gives you the key to sign transactions from that address. If you lose your seed phrase and have no backup, you lose access permanently. There is no password reset. This is not a scare tactic; it is the operational reality of self-custody, and every creator deploying a contract needs a hardware wallet or at minimum an offline seed phrase backup for the deployer address.

Once minted, NFTs trade on secondary marketplaces like OpenSea, Blur or Magic Eden. Each marketplace has its own fee structure, typically a percentage taken from the seller on each transaction. iMintify generates a mint website, a hosted page with your collection details and a mint button, when you deploy your contract. That page is separate from secondary marketplaces: it is where buyers mint during the primary sale. After the supply is minted out, trading moves entirely to secondary platforms. A reveal is when a collection minted blind, meaning buyers received a placeholder image, shows the final artwork. Reveals are usually triggered by the creator after the primary sale closes.

NFT glossary quick-reference: start with these guides

What is an NFT?

A plain-language explanation of what non-fungible tokens are and why ownership is recorded on a blockchain.

Read more →

How do NFTs work?

A deeper look at the mechanics: token IDs, on-chain records and how marketplaces read your metadata.

Read more →

What is minting an NFT?

The step-by-step of what happens when you press mint: from transaction to token in your wallet.

Read more →

NFT smart contracts

How to deploy an ERC-721, ERC-1155 or Solana contract through iMintify without writing code.

Read more →

Allowlist setup

How to build and manage an allowlist for your mint, including Merkle tree verification and phase configuration.

Read more →

IPFS and NFT storage

Why decentralized storage protects your collection and how iMintify handles IPFS pinning for your assets.

Read more →
What is the difference between minting and buying an NFT?+

Minting creates the NFT for the first time. You pay the mint price set by the creator plus a gas fee, and the token is written to the blockchain with your wallet as the first owner. Buying on the secondary market means purchasing an already-minted token from another wallet, with the sale recorded as a transfer rather than a creation. Gas is paid in both cases, but the type of transaction differs.

Why do gas fees change so much?+

Gas prices on Ethereum fluctuate with demand. When many people are submitting transactions at the same time, validators prioritize higher bids, pushing the base fee up. On Solana, the fee structure is different and much more stable because the network processes transactions in parallel at high speed. If you are deploying on Ethereum and cost is a concern, checking a gas tracker and waiting for a quieter period, often late night UTC, can save a meaningful amount.

Do I need to code to deploy an NFT smart contract?+

Not with iMintify. The platform generates and deploys audited smart contracts based on the parameters you set through a no-code interface: supply, price, royalties, allowlist and mint phases. You connect your wallet, configure your collection and deploy. The contract is yours on-chain, not iMintify's, so you retain full ownership and control.

What happens if my NFT metadata disappears?+

The token still exists on-chain, but every marketplace that reads the metadata URL to display the image and traits will show a broken or empty result. This is why storage choice matters at launch. Hosting metadata on a regular server is a risk because domains expire and servers go offline. IPFS addresses files by content hash, so the file is retrievable as long as at least one node on the network has it pinned. iMintify pins your files to IPFS at upload.

Is floor price a reliable indicator of a collection's value?+

Floor price tells you what the cheapest listed NFT in a collection costs right now, but it does not tell you much on its own. A low floor could mean the market is oversupplied, that holders are exiting or simply that the collection is new with low volume. It can also be temporarily inflated by a small number of coordinated trades. It is one data point worth watching alongside trading volume and the number of unique holders, not a standalone measure of quality or long-term value.

Create your NFT, free