Module Overview
Getting the vocabulary right is the prerequisite for evaluating any project's claims. When a project says 'our token does X,' the first question is what kind of token they actually mean.
- A coin is the native cryptocurrency of a blockchain (Bitcoin, ETH, SOL). It is required for transaction fees and often for staking.
- A token is an asset issued on top of an existing blockchain by a smart contract. Almost all tokens are ERC-20 (Ethereum-compatible).
- An NFT is a token that represents a unique asset, not a fungible quantity. ERC-721 and ERC-1155 are the dominant standards.
- Token categories: utility (access to a service), governance (voting in a DAO), security (claims on revenue), stablecoin (pegged to fiat or another asset).
- The distinctions matter — utility tokens, governance tokens, and security tokens have different regulatory treatments and different roles.
Key Terms
The vocabulary this module unlocks. Skim before you read.
- Coin
- The native asset of a blockchain. BTC, ETH, SOL, etc. Issued by the protocol.
- Token
- Any asset other than a coin that exists on a blockchain. Created by deploying a smart contract.
- Fungible
- Property where any one unit is interchangeable with any other. (Dollars, bitcoin, USDC.)
- NFT (Non-Fungible Token)
- A unique, non-interchangeable token.
- ERC-20
- The most common Ethereum standard for fungible tokens.
- ERC-721
- The most common Ethereum standard for non-fungible tokens.
- Memecoin
- A token whose value is primarily driven by community and meme appeal rather than utility. (DOGE, SHIB, PEPE.)
- Governance token
- A token that grants voting rights in a DAO or protocol. (UNI, AAVE, COMP.)
The lineage before 2008
Nov 2015
ERC-20 standard finalized
Fabian Vogelsteller and Vitalik Buterin specify the fungible-token standard. Becomes the foundation for thousands of tokens.
2017
ICO boom
Thousands of projects launch ERC-20 tokens. Most go to zero; a handful become enduring protocols.
Nov 2017
CryptoKitties + ERC-721 proposed
First viral on-chain collectibles. Drives the formalization of the NFT standard.
Jan 2018
ERC-721 finalized
Non-fungible token standard ratified. Each token ID is unique; foundation of all major NFT collections.
Jun 2019
ERC-1155 finalized
Enjin's multi-token standard ships. Single contract handles both fungible and non-fungible tokens efficiently.
2021
NFT cultural peak
Bored Apes, CryptoPunks, generative art. NFT volume crosses $25B+ for the year.
2022
NFT volume collapses
Floor prices fall 80-95% across most major collections. Speculation phase ends; utility-driven NFTs continue.
Why the vocabulary matters
The vocabulary of crypto is, in popular usage, often wrong. People say "Bitcoin token" when they mean "Bitcoin." They say "altcoin" when they mean any token that is not Bitcoin (which loses the distinction between an actual altcoin and an ERC-20 token). They say "NFT" when they mean an image they bought online, conflating the smart contract that represents ownership with the underlying media.
These are not pedantic distinctions. They describe genuinely different things with different mechanics, different security models, and different risk profiles. Getting them right is the prerequisite for evaluating any project's claims.
Coin vs token
A coin is the native cryptocurrency of its own blockchain. Bitcoin (BTC) is the native coin of the Bitcoin network. Ether (ETH) is the native coin of Ethereum. SOL is the native coin of Solana. ADA for Cardano. DOT for Polkadot.
Coins are required for transaction fees on their own networks. They are also often required for staking (in proof-of-stake systems) or paid as block rewards to miners (in proof-of-work systems). The coin and the blockchain are tightly coupled — without the coin, the network does not function.
A token is an asset issued on top of an existing blockchain by a smart contract. The token is not native to any blockchain. It runs on someone else's blockchain. The most common case is ERC-20 tokens on Ethereum — Tether (USDT), Circle's USDC, Uniswap's UNI, Aave's AAVE, and thousands of others. These are all tokens. They exist as records in smart contracts on the Ethereum blockchain.
The structural difference matters. If something happens to Ethereum, every ERC-20 token on Ethereum is affected. If something happens to Bitcoin's network, only Bitcoin is affected. Tokens inherit the security and operational properties of the chain they run on. Coins have their own.
Token standards: ERC-20, ERC-721, ERC-1155
On Ethereum, several token standards define how different categories of tokens work. Standards matter because they let wallets, exchanges, and other contracts work with any token that follows the standard — not just specific tokens with custom interfaces.
ERC-20 is the standard for fungible tokens. "Fungible" means each unit is interchangeable with another. Your 100 USDC is the same as anyone else's 100 USDC. The ERC-20 spec defines a common interface (transfer, balanceOf, approve, etc.) that any wallet or contract can call. This is why MetaMask can display any ERC-20 token balance, and why DEXs can trade any ERC-20 pair — they all conform to the same interface.
ERC-721 is the original NFT standard. NFT means non-fungible token. Each token ID under this standard represents a unique asset. Token #1 is different from token #2. The contract tracks ownership of each unique ID and the metadata associated with it. The CryptoPunks and Bored Ape Yacht Club collections are ERC-721 contracts.
ERC-1155 is a more flexible standard. It lets a single contract issue both fungible and non-fungible tokens, and bundle multiple token types together. Useful for blockchain games where you might want both unique items (NFTs for swords, armor) and fungible currency (in-game coins) from the same contract. More gas-efficient for large collections.
Other chains have similar standards. Solana has SPL tokens. Cosmos has IBC-compatible tokens. The principle is the same: a standard lets the broader ecosystem work with any conforming asset.
Token categories by function
Within the universe of tokens, several broad categories describe what the token actually does.
Utility tokens provide access to a service or product. The token is required to use a specific protocol or platform. Filecoin's FIL pays for decentralized storage. Brave's BAT pays content publishers in the Brave browser. The utility-token category is contested — many projects label tokens as utility when they functionally behave more like investments.
Governance tokens give holders voting rights in protocol decisions. UNI lets holders vote on Uniswap protocol changes. MKR governs MakerDAO. AAVE governs Aave. These tokens represent decentralized control of the protocol. The catch: governance tokens often also have significant value, leading users to acquire them for investment more than for participation.
Security tokens represent claims on revenue, assets, or other rights typically associated with traditional securities. The category is small in practice because regulators treat security tokens with full securities law — registration, accredited investor requirements, secondary market restrictions. Most projects avoid this category for that reason.
Stablecoins are tokens pegged to a stable value, typically the US dollar. We covered these extensively in Module 9. USDC, USDT, and DAI are the dominant examples.
Wrapped tokens are tokens that represent assets from another chain. Wrapped Bitcoin (WBTC) is an ERC-20 token on Ethereum backed 1:1 by Bitcoin held in custody. Lets Bitcoin holders interact with Ethereum DeFi without selling their BTC.
Meme tokens are tokens with no specific function beyond cultural reference and speculation. Dogecoin started as a joke; Shiba Inu followed. The category is real, durable in its way, but represents pure speculation.
The categories are not always cleanly separable. A governance token can have utility (you need it to interact with the protocol). A utility token can develop security-like characteristics if it accrues value from protocol revenue. Always look at what the token actually does in the system, not just what category the project's marketing assigns.
NFTs in 2026
The NFT category went through a famous boom-and-bust cycle in 2021-2022. Apes for $300,000. JPEGs trading for millions. Most of that activity has collapsed. NFT trading volume in 2026 is a small fraction of the 2021 peak.
But the category did not disappear. What changed is the use cases.
Profile-picture NFTs (PFPs) — the cultural artifact of the 2021 wave — are smaller, but specific collections (CryptoPunks, BAYC) retain meaningful floor prices and active markets. They function as identity tokens within crypto-native culture.
Generative art and digital art platforms (Art Blocks, Manifold) operate at smaller scale than peak but with sustainable economics. Artists are paid directly; collectors hold provable ownership.
In-game NFTs are the most-promising current category. Games that use NFTs for items, characters, or land let players own assets they can trade or use across compatible platforms. The category had a false start with play-to-earn (Axie Infinity, peaked 2021); the 2026 generation is more focused on actual gameplay with NFT integration.
Real-world asset tokenization — using NFT-like contracts to represent ownership of physical items (real estate titles, watches, art) — is small but growing. The infrastructure is mature; the legal frameworks are still catching up.
The lesson from the NFT cycle is the same as every other cycle in crypto. Speculation drives initial adoption, then collapses, leaving behind the use cases with genuine demand. NFTs are not what 2021 marketing claimed they were. But they are a useful primitive for a specific subset of use cases that involve unique ownership.
The practical takeaway
When you read a project announcement, the first questions are categorical:
Is this a coin or a token? If a coin, what blockchain secures it? If a token, what chain does it run on?
If a token, what category? Utility, governance, security, stablecoin? What does it actually do in the system?
If an NFT, what does the contract represent? Art, in-game items, identity, real-world asset?
Get the categories right and most marketing claims become easier to evaluate. Get them wrong and you can spend years confused about what you actually own.
The next and final module of Part 2 is the recap. Six modules into the ecosystem now. Time to consolidate what you know about the layers, the assets, the exchanges, and the yield mechanics — before Part 3 moves into the more interesting question of what actually gets built on top of all this.
Key takeaways
Carry these with you
01
Coin vs token is an architectural distinction. Native to its own blockchain (coin) vs running on someone else's blockchain (token).
02
Most 'tokens' in crypto news are ERC-20 tokens on Ethereum or an EVM-compatible chain. Knowing this tells you who actually secures the asset.
03
An NFT is just a non-fungible token. Whether it represents art, identity, in-game items, or financial instruments depends entirely on what the smart contract does.
04
Token categories are not always cleanly separable. A governance token can have utility. A utility token can have security-like characteristics. Always look at what the token actually does.
What you should now be able to do
- 01.Distinguish a coin (native cryptocurrency of a blockchain) from a token (asset issued on top of a blockchain by a smart contract).
- 02.Identify the main token standards (ERC-20 for fungible, ERC-721/ERC-1155 for NFTs) and what each enables.
- 03.Recognize the different categories of tokens — utility, governance, security, stablecoin — and what each represents.
- 04.Explain what makes an NFT actually different from a regular token and where the line gets fuzzy.
Module quiz
Test what you learned
Pick an answer, see the result immediately, and check your reasoning against the explanation. The questions are tied directly to the outcomes promised at the top of this module.
Question 1 of 6
What is the difference between a coin and a token?
Question 2 of 6
What is ERC-20?
Question 3 of 6
What makes an NFT 'non-fungible'?
Question 4 of 6
What is the main difference between ERC-721 and ERC-1155?
Question 5 of 6
What is a governance token?
Question 6 of 6
Why does the distinction between utility, governance, and security tokens matter?
Read deeper
Curated readings for Module 13
A brief history of NFTs · The Block
The NFT category has been through a complete boom-bust-rebuild cycle. Technical foundations (ERC-721) shipped in 2018; the 2021 boom was driven by NBA Top Shot, Beeple's $69M Christie's sale, and Bored Ape Yacht Club's celebrity adoption. The 2022-2023 crash was severe — major collection floors fell 90%+, OpenSea trading volume fell ~99%. The durable use cases that survived are memberships, ticketing, tokenized real-world assets, and identity primitives. The speculative profile-picture market mostly did not survive. The lesson is that the underlying technology is real (provable digital ownership) but was misapplied during the boom to use cases dominated by speculation rather than utility.
NFT collection size and rarity explained · The Block
NFT collections have internal economic structure determined by two axes: collection size (supply) and within-collection rarity (demand for specific trait combinations). Most major profile-picture collections settled on ~10,000 as a standard size — large enough for community, small enough for per-piece scarcity. Within a collection, rare-trait combinations command 10x or more premium over the floor price; exceptional pieces can command 100x+. Rarity is calculated by third-party tools (Rarity Tools, Rarity Sniper) with different methodologies. The post-2022 market consolidation rewarded collections with real rarity gradients, strong communities, and identifiable utility; cosmetic-rarity collections compressed toward zero.
The CryptoPunk and Bored Ape origin stories
CryptoPunks (created by Larva Labs in 2017) and Bored Ape Yacht Club (created by Yuga Labs in 2021) are the two foundational NFT collections. CryptoPunks were given away for free initially and became the foundational crypto-native status symbol. BAYC distinguished itself with commercial usage rights bundled to ownership and became the breakout consumer-cultural moment of 2021-2022 through celebrity adoption. Both collections reached extraordinary peak prices during the 2021-2022 boom and fell substantially during the subsequent crash. Their structural significance is that they demonstrated digital ownership of uniquely identified objects could create sustained cultural value — the price levels were inflated, but the underlying concept was validated.
What are memecoins? · The Block
Memecoins are crypto tokens with no underlying technology, no revenue mechanism, no formal team, and no fundamental valuation anchor. They are priced by attention and cultural cycles, and the right mental model is a casino rather than an equity market. The 2024-2026 era has been dominated by Solana memecoins (WIF, BONK, POPCAT, PNUT, etc.) launched primarily through Pump.fun. The base rate is brutal: most memecoins go to zero, most participants lose money, insider distribution and rug pulls are the modal failure mode. Participants who do engage should treat it as high-variance gambling with money they can afford to lose, set predetermined exits, and avoid the common mistakes (averaging down, borrowing, emotional attachment to positions).
What is a flagged NFT? · The Block
A flagged NFT is one that an NFT marketplace has marked as suspicious — typically because it's been reported stolen, has passed through a sanctioned address, has been associated with wash trading, or belongs to a known scam collection. Flagged NFTs become effectively unsellable on major marketplaces (OpenSea, Blur, Magic Eden) because the marketplace hides them from listings and blocks sales. A buyer who unknowingly purchases a flagged NFT loses the full purchase price. The protective behavior is two minutes of due diligence: verify flag status on the marketplace before buying. Recovery from buying a flagged NFT is limited and rarely matches the original purchase price.
What is an NFT marketplace? · The Block
NFT marketplaces are venues for buying and selling NFTs that function as both order-matching engines and curatorial layers. OpenSea was historically dominant; Blur took share with a pro-trader product and an optional-royalty policy that reshaped the category economics. Magic Eden dominates Solana NFTs and has expanded to other chains; Tensor is the pro-trader Solana alternative. Specialty marketplaces exist for high-end art (Foundation, SuperRare), creator-focused minting (Zora), and branded drops. The decision frame: match chain, match use case, account for royalty policy and fees. The royalty question has become a major design consideration for both creators and traders.
Up next
Module 14 · Beginner · 4 min
Part 2 recap — the ecosystem, decoded
Preview reader
You are reading a private preview of IMPCT Institute. If something landed, didn't land, or felt confusing on this lesson, tell us. Short notes are useful. Long notes are useful. No notes are also fine.

