Key points
- An NFT is an entry in a contract stating which address controls identifier number X. The image is almost never inside it; what sits on-chain is a pointer to a URI.
- Buying an NFT does not transfer the copyright in the artwork unless an explicit licence says so. They are two legally separate things.
- Royalties were never enforced at the protocol level: marketplaces paid them voluntarily. When competition made them optional in 2022-2023, they collapsed.
- The market peaked at around 24.9 billion dollars in sales during 2021; in the third quarter of 2025 it was 1.6 billion across 18.1 million sales. Far more transactions, far less money per transaction.
- The real risk is not the picture losing value — it is signing a malicious approval that empties your entire collection in one go.
There is one question almost nobody answers precisely: when you buy an NFT, what exactly comes under your control? Not the image. And, with rare exceptions, not the right to exploit that image either. What you acquire is a row in a smart contract's table saying that address X controls identifier number Y within that collection. Everything else — the file, the licence, the community, the status — is a layer built on top of that very small technical fact.
The distinction is not pedantry. It determines what happens if the image server goes offline, whether you can print the artwork on a T-shirt and sell it, and whether the creator earns anything when you resell. Let us take it apart, without nostalgia for 2021 and without the cheap mockery that followed.
What an NFT is technically
An NFT is a non-fungible token: each unit is distinct and not interchangeable with another of the same class. On Ethereum, two standards define them.
ERC-721 (EIP-721) is the original. A contract maintains a mapping from tokenId to owner address, with functions to transfer, approve a third party and query who owns what. Each tokenId is unique within that contract, and its full identity is the pair contract address + tokenId. Two different collections can each have a token number 1 and they have nothing to do with each other.
ERC-1155 (EIP-1155) is a multi-token standard: a single contract manages several identifiers, and each one can have one copy or many. It works for one-of-a-kind pieces and for "5,000 editions of this item" alike, and it supports batch transfers, which cuts gas costs sharply when moving several at once.
The function that matters most here is called tokenURI in ERC-721 (or uri in ERC-1155). It returns a string. That string points to a JSON file with the metadata — name, description, attributes — and inside that JSON there is another field, image, pointing at the file itself. Two levels of indirection between what is on-chain and what you see on screen. That is where almost all of an NFT's structural risk lives.
| Standard | What it defines | Typical use |
|---|---|---|
| ERC-721 | A unique token with a single owner | 1/1 art, profile-picture collections, domains |
| ERC-1155 | Multiple identifiers, one or many copies each | Game items, editions, tickets |
| ERC-2981 | A standard field where the contract declares a royalty recipient and percentage | Royalty signalling (it does not collect them) |
| ERC-6551 | Lets an NFT have its own account and own other assets | Inventories, composite identity |
Where the file lives (and why it matters so much)
| Location | How it works | What happens ten years out |
|---|---|---|
| Fully on-chain | The image (usually SVG) is generated or stored in the contract itself | Survives as long as the chain does. Expensive to deploy and size-limited |
| IPFS | The URI is ipfs:// plus a CID, which is a hash of the content |
The file is verifiable and unalterable, but somebody has to keep hosting it. If everyone stops, it vanishes |
| Arweave | One-off payment for permanent storage via ar:// |
Designed for long-term persistence; depends on that network surviving |
| Centralised server | The URI is an ordinary https:// URL on a normal domain |
If the domain lapses or the company folds, the token points at a 404 |
The centralised server case is the most common in collections launched in a hurry, and also the most fragile, because it fails in two ways. The first is link rot: the token remains on-chain, intact and transferable, pointing at an address that returns nothing. The second is worse: whoever controls that server can change the image without touching the chain. The ownership record is immutable; what it points to is not.
Read the tokenURI before you buy. It costs nothing to check from a block explorer, in the contract's read tab. If it starts with https:// on the collection's own domain, you are trusting that company to keep paying for hosting indefinitely. If it starts with ipfs://, also find out who maintains the pinning.
Token ownership versus copyright
These are two separate legal planes, and confusing them is the most expensive mistake made in this market. Transferring an NFT is a registry movement on a blockchain. Assigning the exploitation rights in a creative work requires, in most legal systems, a specific act of assignment with its own instrument and its own defined scope. The token changing hands assigns nothing over the work by itself.
In practice at least four models coexist:
- No published licence. The majority case. The buyer holds the token and has no documented right over the image. All they can do is whatever ordinary fair or lawful use allows.
- Personal-use licence. You may display the work and use it as an avatar, but not exploit it commercially.
- Limited commercial licence. Commercial exploitation permitted up to an annual revenue cap.
- Public domain or open licence. Some collections have released their work under CC0, which means anyone can use it whether or not they hold the token.
Before buying, look for the licence document. If none exists, assume the first scenario.
The royalty problem
A royalty is the percentage a creator collects on each resale. Here is the fact that almost never gets explained: the ERC-721 standard contains no mechanism for collecting them. A token transfer is a token transfer; the contract does not know whether payment occurred, or how much, and it cannot withhold a slice.
ERC-2981 did not fix this. All it does is standardise a field where the contract declares who should be paid and how much. The party that decides whether to actually pay is the marketplace executing the sale. For years everyone honoured that declaration because it was the sector's social norm. When platforms appeared in 2022 competing for volume by making royalties optional — letting the buyer choose the percentage, zero included — the rest had to follow or lose liquidity, and creator royalty income collapsed.
The only technical way to enforce them is to restrict, in the contract itself, which marketplaces may operate, and that turns the token into something with limited transferability, which in turn reduces its liquidity. There is no elegant solution: it is a trade-off between what the creator earns and how freely the piece circulates.
Worked example: what happens when you buy a 0.5 ETH NFT
You buy a piece listed at 0.5 ETH. With ETH at $2,505, the August 2026 price, that is $1,252.50. Assume a marketplace charging 2.5 % and a declared royalty of 5 %.
| Item | ETH | Dollars |
|---|---|---|
| Price paid by the buyer | 0.5000 | $1,252.50 |
| Marketplace fee (2.5 %) | 0.0125 | $31.31 |
| Royalty to the creator (5 %) | 0.0250 | $62.63 |
| Net to the seller | 0.4625 | $1,158.56 |
On top of that comes gas, paid by the buyer. A marketplace purchase consumes on the order of 250,000 gas units. At 0.151 gwei, Ethereum's actual level as of August 2026 according to the Etherscan gas tracker, that is 0.00003775 ETH, or about $0.09. To gauge how much the context has shifted: the same transaction at 100 gwei, an ordinary level in 2021, would cost 0.025 ETH — roughly $62.63 at today's ETH price. Operating costs have collapsed; the detail is in the gas fees guide.
Now the part almost nobody calculates. If you want to resell tomorrow and bear the same 7.5 % of deductions, you receive 92.5 % of the sale price. To recover your 0.5 ETH you need to sell at 0.5405 ETH, 8.1 % above what you paid. And if the marketplace you sell on ignores the royalty, the seller keeps 0.4875 ETH instead of 0.4625: that difference comes out of the creator's pocket, not yours.
The market's real cycle, with figures
| Period | Volume | Note |
|---|---|---|
| Full year 2020 | ~$94.9M | A marginal market |
| Full year 2021 | ~$24.9B | All-time peak |
| Q3 2021 | $10.7B | Highest quarter |
| January 2022 | $3.7B on OpenSea alone | The platform's record month |
| Q1 2025 | — | 7 million sales |
| Q2 2025 | — | 12.5 million sales |
| Q3 2025 | $1.6B | 18.1 million sales |
The right reading of those numbers is neither "the market is dead" nor "the market is back". It is more interesting than either: the number of transactions has recovered strongly and the dollar volume has not. The third quarter of 2025 recorded 18.1 million sales, a count not seen since 2022, moving 1.6 billion dollars. Divide and the average ticket is about 88 dollars. At the 2021 peak, with vastly fewer trades, 24.9 billion changed hands. Average NFTs per wallet went from 4.2 to 8.4 over the same period: more people holding more pieces, each one worth far less.
On 2026 it is worth being explicit: there is no verified volume figure available for this year. Treat any number circulating without a primary source as unverified. What is verifiable is the trend described through the third quarter of 2025.
Which use cases survived
Outside profile-picture art, the cases still standing share one trait: verifiable uniqueness solves a real problem, and the token is not bought in the hope of reselling it higher.
- Event tickets. A ticket is a unique access right, transferable under conditions and forgeable on paper. It fits well, and it lets the organiser see and cap resale.
- Credentials and certifications. Diplomas, licences, professional accreditations. These are usually issued as non-transferable tokens, precisely so that no market forms.
- Domain names. ENS names and their equivalents are NFTs; holding the token is controlling the name.
- Asset tokenisation. Representing a specific, identifiable share in an asset, backed by an off-chain legal contract. Here the NFT is a record, not the asset. Some DeFi protocols even accept them as collateral, though with severe valuation haircuts for illiquidity.
In all of these the hard work is not in the token, it is in the legal and operational framework wrapped around it. The smart contract merely records the state.
The concrete risks
- Non-existent liquidity. A "floor price" is what the cheapest seller is asking, not what anyone will pay. Look at the best firm bid instead: on inactive collections it can be 80 % lower, or simply absent.
- Wash trading. Buying and selling between your own wallets inflates volume and average price without any demand behind it. It is cheap on low-gas chains and it contaminates every volume-based ranking.
- Theft by malicious signature. Nobody needs your seed phrase. It is enough for you to sign a
setApprovalForAllon a site imitating a marketplace: that signature authorises an external contract to move your whole collection whenever it suits. - Mutable metadata. If the URI points at a server the issuer controls, the piece you bought may not be the piece you see a year from now.
- Poisoned airdrops. Tokens that appear in your wallet unprompted, where interacting with them triggers the malicious approval.
The broader context for these losses comes from Chainalysis in its January 2026 report: during 2025, 713 million dollars were stolen from personal wallets across 158,000 incidents, with more than 80,000 unique victims, and the average scam payment rose from 782 to 2,764 dollars, an increase of 253 %. Impersonation scams grew 1,400 % year on year. The full picture is in the guide to the most common crypto scams.
What to check before you buy
- Read the
tokenURIon a block explorer and find out whether the file sits on-chain, on IPFS, on Arweave or on a private server. - Look for the collection's licence document. If you cannot find one, assume you acquire no rights over the artwork.
- Verify the contract address from the project's official source, not a link on social media. Fake collections are visually identical.
- Check the best firm bid, not the floor price, and count how many genuine sales happened in the past month.
- Before signing, read what the wallet is actually asking for: a purchase does not require unlimited permission over an entire collection.
- Periodically revoke approvals granted to marketplaces and contracts you no longer use.
- Keep valuable pieces in a wallet separate from the one you use for minting and experimenting.
The honest conclusion is that an NFT is a useful technical primitive — a verifiable ownership record for something unique — that for two years was used almost exclusively to speculate on pictures. The primitive is still useful. The speculative phase left behind a trail of illiquid pieces whose metadata, in many cases, no longer resolves to anything at all.
Frequently asked questions
If I buy an NFT, is the image mine?
You are the holder of the token, which is an on-chain record. Ownership of the copyright in the image depends on whatever licence the issuer published, and it does not travel automatically with the token. Some collections grant broad commercial rights, others grant personal use only, and many never published a licence at all, which leaves the buyer with no rights over the artwork whatsoever.
What happens if the server hosting the image disappears?
If the metadata points to a URL on an ordinary server and that server goes dark, the token still exists on-chain but stops resolving to anything. This is known as link rot. With IPFS the identifier is a hash of the content, so the file is verifiable, but somebody still has to keep hosting it. Only fully on-chain NFTs are immune.
Are NFTs useful for anything beyond profile-picture art?
Yes, in cases where verifiable uniqueness is the valuable part rather than speculation: event tickets, non-transferable credentials and certifications, domain names such as ENS, and representing shares in tokenised assets. These are dull use cases with genuine demand, a long way from the 2021 speculative cycle.
Can I lose an NFT without my keys being stolen?
Yes. The most common route is signing an approval (setApprovalForAll) on a fraudulent site imitating a marketplace. That signature moves nothing at the time, but it authorises an external contract to transfer every token in that collection whenever it likes. Review and revoke approvals regularly.
Sources and references
- EIP-721: Non-Fungible Token Standard
- EIP-1155: Multi Token Standard
- EIP-2981: NFT Royalty Standard
- EIP-6551: Non-fungible Token Bound Accounts
- IPFS Docs — Persistence, permanence and pinning
- Chainalysis — Crypto scams 2026
- Etherscan — Gas Tracker
- DappRadar — industry reports and NFT market data
Related guides
What a smart contract is (and why it is not a contract)
How code running on the EVM actually works, why almost no contract is truly immutable, and what to check before you sign a transaction.
Technology · 12 minGas fees: why you pay what you pay, and how to pay less
How Ethereum gas is calculated after EIP-1559, why a swap costs $0.131 in August 2026, and which tactics genuinely cut your bill.
Technology · 11 minWhat DeFi Is: How It Works Under the Hood and the Risks You Take On
How AMMs, over-collateralised lending and liquid staking actually work, with worked numbers for impermanent loss and liquidation, August 2026 TVL data and the risks that stack up.
Investing · 13 min