Glossary

NFT (Non-Fungible Token)

A unique digital asset with verifiable ownership on blockchain, representing art, collectibles, gaming items, or real-world assets.

Key Takeaways

  • NFTs are unique blockchain tokens that represent ownership of a distinct digital or physical asset. Unlike fungible tokens where each unit is interchangeable, each NFT has a unique identifier that makes it one-of-a-kind and verifiable on-chain.
  • The two primary standards are ERC-721 (one token per asset) and ERC-1155 (multiple token types in a single contract). Bitcoin also supports NFT-like assets through Ordinals, which inscribe data directly onto individual satoshis.
  • Beyond speculative collectibles, NFTs enable practical applications including digital identity, event ticketing, gaming items, and real-world asset tokenization: a market projected to reach $2 trillion by 2030.

What Is an NFT?

A non-fungible token (NFT) is a cryptographic token on a blockchain that represents a unique asset. The word "fungible" means mutually interchangeable: one dollar bill is worth the same as any other dollar bill. Non-fungible means the opposite: each token is distinct, with its own identity and provenance. An NFT functions as a digital certificate of ownership that anyone can verify without trusting a central authority.

Technically, each NFT is identified by the combination of its smart contract address and a unique token ID (a uint256 value). The smart contract maintains an on-chain mapping from each token ID to its current owner address, creating an immutable ownership record. Most NFTs also include a tokenURI that points to off-chain metadata: a JSON file describing the asset's name, description, image, and attributes.

The concept emerged from early experiments on Ethereum. CryptoPunks launched in June 2017 as 10,000 algorithmically generated pixel characters that could be claimed for free. CryptoKitties followed in November 2017, demonstrating enough demand that the Ethereum community formalized the ERC-721 token standard in 2018 to provide a common interface for non-fungible tokens.

How It Works

NFTs rely on smart contracts deployed to a blockchain. The contract defines rules for minting (creating), transferring, and querying tokens. When someone mints an NFT, the contract assigns a new token ID, records the creator as the initial owner, and emits a Transfer event on-chain.

  1. A creator deploys an NFT smart contract (or uses an existing one) to a blockchain like Ethereum, Solana, or Bitcoin via Ordinals
  2. The creator calls a mint function, which generates a unique token ID and links it to metadata describing the asset
  3. The contract records ownership by mapping the token ID to the creator's wallet address
  4. When the NFT is sold or transferred, the contract updates the owner mapping and emits a Transfer event that anyone can verify
  5. Marketplaces, wallets, and block explorers read these on-chain events to display ownership history and provenance

ERC-721: The Original NFT Standard

ERC-721 was proposed in January 2018 and finalized in June 2018 by William Entriken, Dieter Shirley (co-creator of CryptoKitties), Jacob Evans, and Nastassia Sachs. It defines the minimum interface a contract must implement for non-fungible tokens on Ethereum.

Key functions in the standard:

// Core ERC-721 interface
interface IERC721 {
    // Returns the number of NFTs owned by an address
    function balanceOf(address owner) external view returns (uint256);

    // Returns the current owner of a specific token
    function ownerOf(uint256 tokenId) external view returns (address);

    // Safely transfers an NFT between addresses
    function safeTransferFrom(
        address from, address to, uint256 tokenId
    ) external;

    // Approve another address to transfer a specific NFT
    function approve(address to, uint256 tokenId) external;
}

Each ERC-721 contract represents a single collection. Every token within that collection has a unique ID, and exactly one address owns each token at any given time. The standard also includes optional metadata and enumeration extensions for richer functionality.

ERC-1155: The Multi-Token Standard

ERC-1155 was proposed in June 2018 by Witek Radomski (CTO of Enjin) and finalized in 2019. Its key innovation is that a single contract can manage any combination of fungible and non-fungible token types. Each token ID represents a configurable type: an NFT with a supply of one, or a fungible token with a supply of millions.

This design enables batch transfers of multiple token types in a single transaction, significantly reducing gas costs. For gaming applications where a player might trade dozens of items at once, ERC-1155 is far more efficient than deploying separate ERC-721 contracts for each item type.

Bitcoin Ordinals: On-Chain Inscriptions

In January 2023, developer Casey Rodarmor launched the Ordinals protocol, bringing NFT-like functionality to Bitcoin. Ordinals work fundamentally differently from Ethereum NFTs: instead of storing a pointer to off-chain metadata, the entire content (image, text, or other data) is inscribed directly into the witness data of a Bitcoin transaction.

The protocol assigns a unique ordinal number to every individual satoshi, allowing each sat to carry inscribed data of up to approximately 4 MB. Because the data lives on-chain, inscriptions are fully immutable: as long as Bitcoin exists, the inscription exists exactly as created. There are no admin keys, no off-chain dependencies, and no smart contract logic.

By the end of 2023, over 52 million inscriptions had been created, generating more than 5,300 BTC in transaction fees. This sparked the development of related standards like BRC-20 tokens, which use inscriptions to create fungible tokens on Bitcoin.

The NFT Market: Boom and Correction

NFT trading volume exploded from roughly $95 million in 2020 to approximately $24.9 billion in 2021, as the number of NFT wallets grew from 545,000 to 28.6 million. Several landmark events defined the boom:

  • In March 2021, digital artist Beeple sold "Everydays: The First 5,000 Days" at Christie's for $69.3 million: the first purely digital NFT artwork sold by a major auction house
  • Bored Ape Yacht Club launched in April 2021 at a mint price of 0.08 ETH (roughly $236), selling out within 12 hours. Its floor price peaked at approximately 152 ETH ($429,000) in early 2022
  • Monthly NFT sales volume peaked at $4.6 billion in January 2022, with over one million unique buyers

The correction was equally dramatic. By September 2022, trading volumes had fallen 97% from their January peak. The average NFT sale price dropped 92%, from $3,894 in May 2022 to $293 by February 2023. Bored Ape floor prices declined from roughly $420,000 to around $80,000 by mid-2023. The speculative frenzy receded, but the underlying technology continued evolving toward utility-driven applications.

Use Cases

Digital Art and Collectibles

The original NFT use case: artists mint digital works as NFTs, enabling provable scarcity and on-chain provenance. Collectors can verify authenticity without relying on intermediaries. While the speculative art market cooled significantly, established collections like CryptoPunks and Art Blocks generative art continue to trade as verifiable digital artifacts.

Gaming and Virtual Worlds

NFTs let players truly own in-game items: weapons, characters, land, and cosmetics that exist independently of any single game server. Axie Infinity demonstrated the scale of this model, reaching 2.8 million daily active users and $3.5 billion in NFT transaction volume during 2021. ERC-1155 is particularly popular in gaming because it supports both unique items and stackable resources in one contract.

Event Ticketing

NFT-based tickets solve counterfeiting and scalping through on-chain verification. GET Protocol has issued over 4 million blockchain-based tickets across 9,700+ events in 121 countries. Ticketmaster piloted NFT tickets on the Flow blockchain, minting over 5 million NFTs as proof of attendance and digital memorabilia. Buyers interact with a normal ticketing interface: no crypto knowledge required.

Real-World Asset Tokenization

NFTs can represent ownership stakes in physical assets: real estate, commodities, fine art, and financial instruments. The tokenized real-world asset market grew from $13.5 billion in December 2024 to approximately $33 billion by October 2025. Platforms like blockchain-based RWA systems use NFTs to fractionalize ownership, improve liquidity, and automate compliance through smart contract logic.

Digital Identity and Credentials

NFTs can serve as tamper-resistant credentials: diplomas, professional certifications, membership passes, and proof-of-attendance tokens. The on-chain record provides verifiable provenance without depending on a centralized issuer remaining operational. This overlaps with the broader DAO governance ecosystem, where NFTs function as membership tokens granting voting rights and community access.

Why It Matters

NFTs introduced a foundational primitive for digital ownership: the ability to prove that a specific digital item belongs to a specific person, without trusting any intermediary. This matters beyond collectibles because it enables programmable ownership. A concert ticket NFT can enforce resale royalties automatically. A real estate NFT can encode rental income distribution. A gaming NFT can be used across multiple platforms.

The technology is also expanding across blockchain ecosystems. On Bitcoin, Ordinals and the growing BTC-native DeFi landscape are bringing NFT functionality to the most secure and decentralized blockchain. Layer 2 solutions like Spark reduce the cost of token transfers, making NFT-adjacent applications more practical for everyday use cases like payments and identity verification.

Risks and Considerations

Metadata and Storage Risks

Most Ethereum NFTs store only a token ID and a metadata pointer on-chain. The actual image or media typically lives on IPFS, Arweave, or a centralized server. If that external storage fails or the server goes offline, the NFT still exists on-chain but points to nothing. Bitcoin Ordinals avoid this by inscribing data directly on-chain, but at the cost of larger transactions and higher fees.

Market Volatility

NFT prices are highly speculative and can decline rapidly. The 97% volume decline from the 2022 peak demonstrated that most NFTs trade primarily on speculation rather than intrinsic utility. Buyers should distinguish between NFTs with genuine utility (ticketing, credentials, gaming) and those valued purely on anticipated price appreciation.

Smart Contract Vulnerabilities

NFTs are only as secure as the smart contracts that govern them. Bugs in contract logic can lead to unauthorized transfers, locked tokens, or minting exploits. The approval mechanism in ERC-721 can also be exploited: if a user grants approval to a malicious contract, their NFTs can be drained. Phishing attacks targeting NFT approvals remain one of the most common attack vectors.

Environmental and Scalability Concerns

On proof-of-work chains, minting and trading NFTs consumes significant energy. Ethereum's transition to proof-of-stake in September 2022 reduced its energy consumption by over 99%, largely addressing this concern for Ethereum-based NFTs. On Bitcoin, Ordinals inscriptions compete for block space with financial transactions, which has sparked ongoing debate about Bitcoin's block space priorities.

Regulatory Uncertainty

The legal classification of NFTs varies by jurisdiction. Some regulators treat certain NFTs as securities, particularly those marketed with expectations of profit. Fractionalized NFTs and governance tokens bundled with NFT ownership face additional scrutiny. Creators and platforms should monitor evolving regulations around digital asset classification and intellectual property rights.

This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.