Key points
- A coin is the native asset of its own blockchain: BTC, ETH, SOL. A token is a balance recorded inside a smart contract deployed on somebody else's blockchain.
- Gas is always paid in the network's native coin. To move USDT on Ethereum you need ETH at the same address, and not having it leaves the funds stranded.
- A token is code somebody wrote: many contracts include mint, pause or blacklist functions. Tether has frozen addresses at the request of authorities.
- Wrapped tokens add a custody layer: WBTC holds $9.07B of TVL as of August 2026, and it is not bitcoin — it is a promise of bitcoin.
- The joint SEC-CFTC interpretation of 17 March 2026 sorts crypto assets into five categories and accepts that most of them are not securities in themselves.
Almost everyone uses "coin", "token" and "crypto" interchangeably, and for a while nothing bad happens. The trouble arrives the day your USDT transfer fails, or the day you discover that the balance you thought was yours depends on a function a third party can call whenever it likes.
The coin-versus-token distinction is not terminology for purists. It determines who can change the rules governing your asset, which unit you have to pay in to move it, what happens when the network gets congested, and which regulatory category it falls into. Four practical consequences, all of them expensive to learn the hard way.
This guide uses data verified as of 28 August 2026, with sources linked wherever you would want to check them yourself.
The precise definition, and what it is not
A coin is the native asset of its own blockchain. It exists because the protocol exists: no contract defines it, the network's consensus rules do. BTC on Bitcoin, ETH on Ethereum, SOL on Solana, TRX on Tron. If the coin vanished the network could not function, because it is the unit used to pay whoever secures it.
A token is a balance recorded inside a smart contract living on somebody else's blockchain. USDT has no chain of its own: it is one contract deployed on Ethereum, another on Tron, another on Solana. Each is an independent program keeping its own ledger of "this address holds this much". When you send USDT you are not moving anything across the network — you are asking a contract to subtract from one row and add to another.
And here is the part that ninety per cent of explanations skip: the token is not an object sitting in your wallet. Your wallet does not store tokens; it stores a private key. The balance lives in the issuer's contract, in its internal bookkeeping. Your key gives you the right to order changes to that bookkeeping, provided the contract accepts the order.
The uncomfortable consequence. If the contract includes a function that blocks your address, your private key remains yours and perfectly valid, but the order will be refused. Self-custody protects your key, not your entry in somebody else's ledger.
The standards that make everything fit together
A token is interoperable because it implements a standard: a set of functions with agreed names and behaviours that any wallet or exchange knows how to call.
| Standard | Network | What it defines | Typical use |
|---|---|---|---|
| ERC-20 | Ethereum and EVM chains | Fungible tokens: transfer, approve, balanceOf |
USDT, USDC, DAI, governance tokens |
| ERC-721 | Ethereum and EVM chains | Non-fungible tokens, each with a unique id | NFT collections, certificates |
| ERC-1155 | Ethereum and EVM chains | Multi-token: fungible and non-fungible in one contract | Game items, multi-edition releases |
| SPL Token | Solana | Token accounts separated from the program; one account per holder and mint | Tokens on Solana |
| BRC-20 | Bitcoin | Experimental standard based on Ordinals inscriptions, with no contract logic | Tokens on Bitcoin |
The architectural difference between ERC-20 and SPL deserves a paragraph, because it explains a recurring source of confusion. On Ethereum, the token contract keeps a map of addresses to balances. On Solana there is a single shared token program, and each holder has an associated token account. That is why on Solana you sometimes have to "create the associated account" before you can receive a token, and why there is a small SOL deposit tied to it.
BRC-20 is the extreme case. Bitcoin has no smart contracts in the Ethereum sense, so the standard amounts to writing JSON text inside inscriptions and trusting an external indexer to interpret it. There is no on-chain logic preventing anything; the accounting is done by software outside the protocol.
Who pays the gas, and in what
This is the mistake that costs beginners the most money, and that is not an exaggeration.
Network fees are always paid in that network's native coin. No exceptions, regardless of what you are moving.
- To move USDT, USDC or any ERC-20 on Ethereum, you need ETH at the same address.
- To move USDT on Tron, you need TRX.
- To move an SPL token on Solana, you need SOL.
A token cannot pay for its own transport because the network's consensus layer knows nothing about contracts. It knows about gas, and gas is settled in the unit used to pay validators or miners. This works identically on Bitcoin and Ethereum, as I set out in the comparison between the two networks.
The classic scenario. You buy USDT on an exchange, withdraw it to your wallet, and withdraw only USDT because that is what you meant to buy. The day comes when you need to move it and you find you have no ETH. Your funds are not lost, but they are frozen in place until you obtain the native coin — and obtaining it requires another on-ramp, which is exactly what you do not have at that moment.
Worked example: 1,000 USDT on Ethereum
You hold 1,000 USDT at an Ethereum address and 0 ETH. You want to send it.
Step 1. Your wallet builds the transaction: a call to the transfer function of the USDT contract, with a recipient and an amount.
Step 2. The network demands gas. A plain ETH transfer consumes 21,000 units of gas; an ERC-20 contract call consumes considerably more, because on top of moving value it is executing code and writing to the contract's storage. As of August 2026, with gas at 0.151 gwei according to Etherscan, the general per-transaction cost range on Ethereum sits between $0.04 and $0.24, and a Uniswap swap runs about $0.131.
Step 3. You have no ETH. The transaction is never even attempted: it is rejected for insufficient funds to cover gas. Your 1,000 USDT are still there, visible in the explorer, and untouchable.
Step 4. The fix costs pennies. You send a small amount of ETH to that address. With gas at 0.151 gwei, half a dollar of ETH gives you headroom for dozens of operations.
The caveat that changes how you should read the example. These numbers are exceptionally low. In 2021 gas routinely traded between 50 and 200 gwei — three hundred to thirteen hundred times today's figure. Under those conditions the same transfer cost enough to wreck the economics of moving $20 in stablecoins. If congestion returns, the problem returns with it, so the rule about always keeping a native-coin balance is not a 2026 precaution. It is permanent. I go into it in gas fees.
A token is code that somebody controls
When you buy a token you are accepting the rules of a program. It is worth knowing what those rules are, and since the code is published on the block explorer, you can check.
The functions that materially change your position are these:
mint: allows new units to be created. In a stablecoin this is essential, because units have to be issued against reserves. In an arbitrary token with uncappedmint, it means the issuer can dilute you at will.pause: freezes every transfer of the token at once. Useful when an exploit is under way, and also a kill switch in somebody's hands.blacklist/freeze: immobilises specific addresses. Tether has frozen addresses at the request of authorities on many occasions; this is a documented and exercised capability, not a theoretical one.upgradeable: if the contract sits behind an upgradeable proxy, the logic can change after you bought. What you audited yesterday may not be what runs tomorrow.
None of these functions is inherently malicious. A regulated stablecoin needs the ability to freeze funds in order to comply with court orders, and that is precisely the trade-off you accept in exchange for an issuer guaranteeing the backing. The problem is not knowing they exist.
- Before buying a token, look up its contract on the block explorer and check whether the source code is verified. If it is not, you cannot know what it does.
- Check whether the contract is upgradeable through a proxy, and who holds the admin key.
- Look at balance concentration: if three addresses hold 80% of the supply, the market is not what it appears to be.
- Always confirm the contract address from an official source published by the issuer, never from a search-engine result. Fake tokens copying a real name and symbol are trivially easy to create.
- Review the approvals (
approve) you have granted to contracts periodically, and revoke the ones you no longer use.
Wrapped tokens: when the token stands for something else
A wrapped token exists to represent an asset held somewhere else. There are two families and they should not be lumped together.
WETH wraps ETH inside an ERC-20 contract. This sounds absurd until you see the reason: ETH is the native coin and does not implement the ERC-20 standard, so contracts expecting an ERC-20 token do not know how to handle it. WETH solves that. The risk is contract risk, and the contract is simple and heavily scrutinised.
WBTC is a different animal. It is an ERC-20 token on Ethereum backed by real bitcoin custodied off Ethereum. When you hold WBTC you do not hold bitcoin: you hold a claim on bitcoin that somebody else is keeping. As of August 2026, DefiLlama counts $9.07B of TVL in WBTC, which gives you a sense of how much demand there is for using bitcoin inside Ethereum's DeFi ecosystem.
That "somebody else" is the critical part. The industry's track record on this is blunt: cross-chain bridges account for a disproportionate share of the largest documented losses, precisely because they accumulate custody without inheriting the security of the chain they mirror. Ronin lost around $620M on 23 March 2022 to compromised validator keys; Wormhole more than $320M on 2 February 2022 to a signature-verification flaw; the BSC Token Hub around $570M on 6 October 2022.
- Do not treat a wrapped asset as equivalent to the underlying when assessing your risk.
- Do not assume the backing is audited in real time simply because the token shares a name with the asset.
- Do not send a token from one network to the same token's contract address on another network: they are different addresses and the funds are not recoverable.
Why the distinction matters to regulators
In the United States, the joint interpretation issued by the SEC and the CFTC on 17 March 2026 established a five-category taxonomy — digital commodities, digital collectibles, digital tools, stablecoins and digital securities — and accepted that most crypto assets are not securities in themselves. It also clarified the treatment of airdrops, protocol mining, protocol staking and wrapping. The broader market-structure bill, the CLARITY Act, remains pending: passed by the House on 17 July 2025 and reported out of the Senate Banking Committee on 14 May 2026, with a cloture vote expected on 15 September 2026 that needs 60 votes and reconciliation between the chambers.
The coin/token distinction is what makes that taxonomy workable. A native asset issued by a protocol with no identifiable issuer fits badly into the mould of an investment contract. A token issued by a company that retains control of the contract, promises backing and can change the rules fits the classic analysis far more comfortably.
In the European Union, MiCA follows the same logic. Regulation (EU) 2023/1114 separates EMTs, referenced to a single official currency, from ARTs, referenced to baskets of assets, and imposes issuer requirements that only make sense where an issuer exists. As of July 2026 several EMTs are authorised — Circle's USDC and EURC, plus EURI, EURCV, EURe, EURD and EUROe — and no ART has been authorised at all. Nobody has ever applied for authorisation to issue BTC or ETH, because there is nobody to apply. I set out the detail in what stablecoins are and in crypto regulation.
One thing regulation does not settle for you is tax. Whether a token swap, a wrap or an airdrop is a taxable event, and at what rate, depends entirely on where you are resident — the rules differ substantially between jurisdictions and change often. Check your own, and take professional advice rather than borrowing a rule you read about somewhere else.
Summary table
| Coin | Token | |
|---|---|---|
| Where it lives | It is the protocol | In a contract on another blockchain |
| Who creates it | Consensus rules | Whoever deploys the contract |
| Pays the gas | Yes, it is the unit of payment | No, it needs the native coin |
| Can your balance be frozen | No | Yes, if the contract allows it |
| Rules changeable | Only by network consensus | By the contract owner, if upgradeable |
| Examples | BTC, ETH, SOL, TRX | USDT, USDC, DAI, WBTC, any NFT |
| Regulatory fit | No identifiable issuer | An issuer, with obligations attached |
The mnemonic that actually works: if you have to ask which network it is on, it is a token. A coin can only be on one.
Frequently asked questions
Are USDT and USDC coins or tokens?
They are tokens. Neither Tether nor Circle runs its own blockchain: they deploy contracts on other networks, principally Ethereum, Tron and Solana. The same USDT exists on several chains as separate, mutually incompatible contracts, which is exactly why you have to pick the right network when withdrawing from an exchange.
I hold USDT but I cannot send it. What is going on?
Almost certainly you do not hold the network's native coin to pay the gas. On Ethereum you need ETH, on Tron you need TRX, on Solana you need SOL. Your wallet will sign the transaction and the network will reject it. The fix is to send a small amount of the native coin to that same address.
Can a token issuer take my balance away?
It depends on the contract. Many centralised tokens include freeze or blacklist functions letting the issuer immobilise a specific balance. This is verifiable: the code is published on the block explorer. A token without those functions cannot do it, even if the issuer wanted to.
What is a wrapped token?
A token that represents another asset held somewhere else. WBTC represents bitcoin custodied off Ethereum; WETH is ETH wrapped in an ERC-20 contract so it can be handled like any other token. In the first case you take on custodian risk; in the second, only contract risk.
Sources and references
- EIP-20: Token Standard (ERC-20)
- EIP-721: Non-Fungible Token Standard
- EIP-1155: Multi Token Standard
- Solana — Token Program (SPL)
- Etherscan — Gas Tracker
- SEC — Joint clarification on crypto assets and the securities laws (17 March 2026)
- CFTC — Press release 9198-26
- Regulation (EU) 2023/1114 (MiCA) — crypto-asset regulation
Related guides
What stablecoins are, and what actually backs each one
Not all stablecoins are the same thing. The real reserves behind USDT and USDC as of August 2026, the three backing models, the historic depegs and what MiCA demands.
· 12 minWhat 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 minBitcoin vs Ethereum: the differences that actually matter
Bitcoin and Ethereum are not competing for the same job: monetary policy, consensus, what each really costs to use as of August 2026, and what you can build on top.
· 12 min