Nonfungible tokens

What Are Nonfungible Tokens?

Nonfungible tokens, usually written non-fungible tokens and abbreviated NFTs, are blockchain records that represent individually distinguishable assets, so that no two units are interchangeable. Fungibility is the property that makes one unit of a currency substitutable for any other; a nonfungible token deliberately lacks it. Each token carries a unique identifier bound to an owner address in a smart contract, and transferring it moves that specific identifier rather than a quantity. This makes NFTs a mechanism for authenticating claims to unique digital or physical items on a public ledger, where ownership history is verifiable by anyone without a central registry.

The concept predates the term. Colored coins on Bitcoin marked specific satoshis to represent external assets, and the 2017 CryptoKitties project on Ethereum demonstrated per-item tokens at scale. What formalized the category was a token interface standard that let wallets, marketplaces, and indexers treat unique tokens uniformly.

Token Standards and On-Chain Structure

The dominant interface is ERC-721, the Ethereum non-fungible token standard, finalized in 2018. It defines a contract that maintains a mapping from a 256-bit token identifier to an owner address, along with functions for transfer, approval, and delegated operator rights, plus events that let off-chain indexers reconstruct ownership without scanning every block. A companion metadata extension supplies a name, a symbol, and a token URI per identifier. Related standards followed: ERC-1155 supports batches of both fungible and nonfungible identifiers in one contract to reduce gas costs, and comparable interfaces exist on Solana, Flow, Tezos, and other chains.

Most of what people think of as the asset lives off-chain. The token URI usually points to a JSON metadata document that in turn references an image or media file, and the durability of the whole arrangement depends on where those files are hosted. Content-addressed storage such as IPFS or Arweave makes the reference tamper-evident, since the address is a hash of the content, whereas a plain web URL can be changed or allowed to lapse. Fully on-chain projects encode the artwork directly in contract storage or generate it from a deterministic algorithm at read time.

Contract Defects and Market Structure

Because NFT contracts hold high-value ownership records and are frequently written quickly, they attract a distinct class of defects. Research on the definition and detection of defects in NFT smart contracts catalogs recurring problems including reentrancy during transfer callbacks, missing access control on minting functions, unbounded loops that can be made to exceed the block gas limit, and metadata that a contract owner can silently repoint after sale. Marketplace approval patterns compound the risk, since granting an operator blanket permission over an entire collection means a compromised marketplace contract can drain it.

Empirical work has also mapped how the market actually behaves. A graph-based analysis of the ERC-721 ecosystem traces transfer networks across collections and finds highly concentrated trading, with a small number of addresses accounting for a large share of volume.

Rights, Provenance, and Limits

Holding an NFT establishes control of a ledger entry. It does not by itself convey copyright, and the legal rights attached depend entirely on a license the issuer publishes separately from the chain. Several projects grant broad commercial licenses to holders while others grant nothing beyond display. Provenance is the clearer benefit: an unbroken chain of custody recorded on-chain from the minting transaction forward is straightforward to audit, which is why the model has been adapted to ticketing, credentials, and supply chain records where the item's history matters more than its resale value.

Applications

Nonfungible tokens have applications in a range of fields, including:

  • Digital art and collectibles issuance and resale
  • Event ticketing with verifiable transfer history
  • Academic credentials, certifications, and membership badges
  • In-game items and virtual land in interoperable game economies
  • Supply chain provenance for luxury goods and pharmaceuticals
  • Intellectual property and patent asset registration
  • Domain name and identity registries
Loading…