An NFT's Ownership Is a Unique Ledger Entry

An NFT's ownership is a unique entry in a public ledger, and you just watched one land in your MetaMask wallet: balance one, a thumbnail the wallet resolved from a metadata URL, and a transaction hash that outlives the sale page it came from. After the first purchase, people stop asking how to sell it. They ask what was actually bought.
The mechanism is unglamorous. A nonfungible token is a contract, usually ERC-721, that keeps a mapping of token IDs to owner addresses. Where an ERC-20 Token Standard contract stores balances — one number per address — an ERC-721 contract stores one owner per ID. For token #1234, ownerOf() returns your address, and only the private key behind that address can sign the transaction that overwrites the field. In MetaMask it shows up as a collectible rather than a balance, because the wallet reads the ownership mapping instead of an amount. Uniqueness is not a property of the image or the file; it is a property of the ledger state. The token points to whatever you associated with it — a picture, a ticket, a deed — and that pointer lives in the metadata, the same URL the wallet fetched to show you the thumbnail.
That mechanism is the whole product. Everything an NFT does is a variation on one operation: transfer a particular token ID from one address to another. No copying, no splitting, no pooling. You can sell it, lend it, or destroy it, and no one can duplicate it, because the chain has no operation for duplicating an ID. Once that settles, the uses that survive contact with reality are three.
Provenance for a specific object
When the value of a piece depends on who made it and who held it, the token's transfer history carries the answer. The contract logs every transfer, so anyone can trace from the creator's address to the current holder. This is where an NFT beats a paper certificate: the certificate requires trust in whoever issued it, while the chain's history stands without that trust. It shines for editions, collectibles, and anything where authenticity — not aesthetic judgment — is the question. The token proves custody over time, nothing more.
Access that cannot be duplicated
A membership, a ticket, a season pass: if a gate checks token ownership instead of a name, the credential is singular. The holder is whoever owns the ID, and after a transfer the previous owner's key controls nothing. For an event or a closed community, the issuer can let the chain handle verification and resale without running a database of attendees. It shines wherever the old system depended on a list of names and the pass was copyable.
A claim on a one-of-one thing
The use with the most weight is the slowest: the token stands for a specific physical object or legal right, and transferring the token is the handover of the claim. It shines when reconciling two separate registries — one for the token, one for the thing — would cost more than the thing is worth. The trade-off is real. The chain records the token, not the thing. Everything rests on someone off-chain honoring the link: a seller, a registrar, an institution. When that link holds, the middleman is removed for exactly that step.
Where it fits against the alternative
The comparison that decides everything is fungibility. An ERC-20 is a quantity: every unit equals every other, which is why swap pools can exist at all. An NFT is a particular ID; uniqueness is the feature and the constraint. The difference shows in how transfers settle. A fungible transfer changes a balance by a number; an NFT transfer overwrites the owner field for a single ID. There is no pool of identical units, no constant product curve, no community price. The rule of thumb follows directly: if a second identical unit would be just as useful, you need the fungible token; if a duplicate destroys the value, you need the nonfungible one. You can see the fungible side of that distinction in action in the syncswap interface; the nonfungible side never clears against anything else.
So the honest description of holding one is controller of a single ledger entry — and that is exactly enough for the three jobs above, as long as you remember which of the three you are doing.