What happened to dead tokens
A token is "dead" when it can no longer be traded, or when its trading has become economically impossible. That sounds simple, but the ways a token dies are many, and the experience of holding one is never the same twice. You might be staring at a balance that still exists on the blockchain but returns "Insufficient liquidity for this trade" every time you try to sell. Or the pair itself might be gone - "Pair does not exist" in your DEX interface. Or the sale goes through, but at a price so low that the gas fee exceeds the token value, leaving you worse off than before.
This page maps the whole territory. Below, we walk through what physically happens on-chain when a token dies, how to recognize the mechanisms, what decisions you face as a holder, and which of our spoke pages answers each question in detail. If you are holding a dead token right now, start here to understand what kind of death you are dealing with - then follow the handoffs to the page that matches your exact situation.
How tokens die: the on-chain mechanisms
A token does not simply "stop trading." Something specific happens on the blockchain that makes the trade fail. The most common event is a liquidity pool withdrawal - someone removes the tokens and the paired asset (usually ETH, BNB, or SOL) from the DEX pool. Once that liquidity is gone, there is nothing to trade against. The swap returns "Cannot estimate gas" or "Insufficient output amount" depending on the DEX. Our spoke page What a liquidity pool withdrawal looks like when a token dies shows the exact transaction hash patterns - the removeLiquidity call, the LP token burn, the final state of the pool with zero reserves.
But liquidity removal is only one mechanism. Some tokens are designed from the start with a honeypot sell-block - the contract allows buys but blocks all sells with a revert in the transfer function. You see "Execution reverted: transfer failed" or "Token is not tradeable." This is not a dead token in the sense of abandoned code; it is a trap. The page Why can I buy a token but not sell it back walks through the exact Solidity patterns that enable this, and how to check them on Etherscan or Solscan before you buy.
Other mechanisms are subtler. A slippage during low-volume sells scenario happens when the liquidity pool still exists but is so shallow that any sale above a tiny amount triggers the "Price impact too high" error or the "Slippage exceeds tolerance" warning. The pair still has reserves - maybe a few dollars worth - but trying to sell even a modest bag will fail. Our What price impact too high means on a dead token swap page explains the math: with a pool ratio of, say, 1 ETH to 1,000,000 tokens, selling 50,000 tokens would move the price by more than 90%. Most DEX interfaces simply refuse to execute such a trade.
Then there are the contract-level deaths. Smart contract self-destruct - the owner calls selfdestruct() on the token contract, making the token permanently untransferable. Token minting exploit where an attacker mints an astronomical supply into the pool, crashing the price to zero. Governance attack draining treasury on a DAO token where a malicious proposal empties the project's funds. And cross-chain bridge token orphan - a token bridged to a chain whose canonical bridge has been abandoned or broken, leaving the wrapped version stranded. That specific scenario is volatile by nature because bridge hacks continue to occur. The page Honeypot token vs dead liquidity what is the difference helps you distinguish between a deliberately malicious contract and an abandoned pool.
Recognizing a Dead Token: Tools and Error Messages
Before you decide what to do, you need to confirm what kind of death you are looking at. That means using tools and reading error messages carefully.
Start with DexScreener or GeckoTerminal. Search the token contract address. If the pair shows zero liquidity and a "Pool not found" error in the DEX interface itself, you are likely looking at a liquidity removal. If the pair exists but shows "Liquidity locked: 0%" on RugCheck or De.Fi Scanner, that tells you the LP tokens were never locked - or they were released and withdrawn. Contrast that with a burned LP position (sent to a burn address), which can sometimes still allow tiny trades. Our page What liquidity locked 0 percent means for a dead token covers this distinction in detail.
When you attempt to swap, the error message is your first diagnostic. "Insufficient liquidity for this trade" on Uniswap V2 means the pool returned zero output for your input amount. "This transaction will fail" on PancakeSwap is the same thing. "Gas estimation failed" precedes a revert - often a honeypot check. "Token metadata unavailable" on Solscan means the token account is no longer recognized by the chain's metadata standard. "This token has been flagged" on DexScreener or Token Sniffer means the platform's automated analysis found at least one red flag: locked liquidity below a threshold, a mint function still live, or a sell tax that differs from the buy tax. The page What does this token has been flagged mean and can I still sell walks through what each flag actually implies and whether you have a remaining exit window.
For the dead tokens that still have some tradeable liquidity - maybe a few cents in the pool - the most common error shifts to "Transfer amount exceeds balance." This happens when the token contract has a balance tracking that does not match the actual ERC-20 balance, often because of a tax-on-transfer that was never removed. Yes, dead tokens still charge taxes. Our page Why selling a dead token still charges a tax and how to check explains how a renounced or abandoned contract can still enforce a 5-99% sell fee, and how to read it on the contract source code or via GoPlus Security API.
The Decisions You Face as a Holder
Once you have identified the mechanism, you must decide what to do. This is not a simple yes/no decision. There are at least four paths, each with its own tradeoffs.
Sell at loss versus hold to zero is the most common fork. If the token still has any tradeable liquidity and the sell does not trigger a hidden tax that eats most of the value, selling at a deep loss may still recover something. But you need to check the tax, the slippage, and the gas cost. If the gas fee to sell is $5 and the token is worth $0.50, the decision is effectively made for you - the gas fee exceeds the token value. Our page What to do when gas fees cost more than the dead token is worth covers the options: leave it, transfer to a burn address (if the gas to transfer is cheaper than the gas to sell), or simply write it off as a tax loss.
Revoke token approval versus leave is a security decision, not a financial one. Many dead tokens still have active approvals linking your wallet to the token contract or to a DEX pair. An open approval on a dead project means the token contract - which may still have an owner, or may be exploitable via a proxy upgrade - can spend your other tokens. The page Why you should revoke token approvals on dead projects shows step-by-step how to use Revoke.cash to clear those approvals, and explains the specific risk of a "dust token phishing link" that pretends to help you sell while actually draining your wallet.
Migrate to new contract versus abandon applies when the project announced a token migration - a new contract address - but you missed the deadline or the migration window closed. Some migrations are permanent; the old token becomes untransferable or the new team stops supporting the bridge. Others remain technically possible but at a gas cost that exceeds the token's value. The page Token migration versus token abandonment on the spoke cluster details how to check whether the migration contract is still active, and what the recovery rate is for late migrators.
Join CTO versus exit - the "community takeover" - is a volatile and risky path. A CTO often claims to rescue the project by renaming it, creating new liquidity, or restarting development. In practice, many CTO groups are fronts for wallet drainers. "Fake CTO group wallet drain" is a known pattern: the group asks you to "verify" your wallet or send a small test transaction, and that drains your tokens. The page Community takeover versus dev return covers how to tell the difference between a genuine revival effort and a second-layer scam.
Common misconceptions that cost money
Several beliefs about dead tokens are both widespread and wrong. They cause people to hold too long, take unnecessary risks, or leave security threats in their wallets.
"If I don't sell, I haven't lost money. " That is accounting fiction. The market value of the token is the highest price someone will pay for it right now. If that price is zero, you have lost the full amount. Delaying realization does not change the economic reality.
"Dead tokens can be revived by community. " Technically possible, but extremely rare - and the revival almost always comes at a cost to existing holders, such as a new token that excludes old wallets or a swap that requires a fee. The page Do dead memecoins and dead utility tokens die differently separates romantic hope from on-chain pattern analysis.
"Burning tokens increases value of mine. " Burning only works if the burn reduces the circulating supply relative to demand. If the project is dead and no one is buying, burning simply reduces the number of worthless tokens. It changes nothing.
"Renounced contract means safe project. " No. Renouncing ownership means the contract cannot be changed, but it also means the contract's flaws are permanent. A renounced honeypot is still a honeypot. The page Renounced vs unrenounced dead token which is worse breaks down the tradeoffs.
"All dead tokens were scams. " Some were. Others were legitimate projects that failed to gain traction, lost their developer team, or got caught in a broader market downturn. The distinction matters for tax-loss harvesting - the IRS treats a failed project differently from a scam in some jurisdictions. Our How to tell if a dead token was a scam or just a failed project page explains the on-chain evidence: gradual sell-off versus single large withdrawal, developer wallet activity, community announcement timelines.
The security risk that doesn't go away
A dead token in your wallet is not inert. It is still an entry point.
Dust token phishing is the most common threat. You receive an airdrop of a dead-looking token with a name like "ClaimRewards" or "AirDrop2025." The token contract is designed to prompt you to visit a website to "claim" them. That website asks you to connect your wallet and sign a transaction - which is actually a token approval or a blind signature that lets the attacker drain your other assets. The page Can a dead token in my wallet be a security risk covers the specific threat models: approval drain, proxy upgrade on an abandoned contract, and metadata rewrite poisoning where a dead token's name and symbol are changed to impersonate a legitimate project.
Cross-chain replay attacks are rarer but more sophisticated. If a dead token existed on multiple chains via a bridge, and the bridge was compromised or abandoned, a transaction on one chain can sometimes be replayed on another to drain remnant LP positions. Our Cross-chain bridge token orphan spoke - marked volatile because new bridge hacks continue to occur - explains the risk profile for holders of tokens like renBTC on non-Ethereum chains.
The final distinction: would you buy it again?
The single most useful question to ask yourself about any dead token is this: If you had zero tokens and knew everything you know now, would you buy this token for the price you could sell it for today? If the answer is no, then keeping it is not a financial decision - it is an emotional one, and it carries real costs. The cost might be the gas fee to finally clear it out, or the security risk of leaving an open approval, or simply the mental overhead of having one more worthless entry in your wallet that "might come back."
The pages in this cluster exist to give you the actual on-chain facts for your specific situation. Start with the error message you are seeing, check the tool that matches your chain, and then follow the handoff to the detailed page. A dead token is a solved problem in information terms - the mechanisms are known, the tools exist, and the decisions are clearer than they feel.
Not financial advice. pigeoninyellowboots.lol publishes market data and general information about digital assets. Crypto assets are volatile and you can lose everything you put in. Nothing here is a recommendation to buy, sell or hold, and we make no price predictions.
Prices are sourced from third parties and may be delayed or wrong. Verify anything you intend to act on against a primary source.