Token Burn
A token burn permanently removes cryptocurrency tokens from circulation by sending them to an unspendable address, reducing total supply.
Key Takeaways
- A token burn permanently removes tokens from circulation by sending them to an address with no known private key, or by calling a smart contract function that reduces total supply. This creates deflationary pressure on the remaining tokens.
- Burns serve multiple purposes: fee destruction (Ethereum's EIP-1559 burns base fees on every transaction), supply management for governance tokens, and peg maintenance through mint-burn mechanisms in stablecoins.
- Bitcoin has no protocol-level burn mechanism, but an estimated 3 to 4 million BTC are permanently lost due to misplaced keys and inaccessible wallets, serving a similar deflationary function on the fixed 21 million supply.
What Is a Token Burn?
A token burn is the process of permanently removing cryptocurrency tokens from circulation. The most common method involves sending tokens to a "burn address": a wallet address that is provably unspendable because no one holds (or can derive) its private key. Once tokens arrive at a burn address, they can never be transferred again, effectively destroying them.
The concept mirrors stock buybacks in traditional finance, where a company repurchases and retires its own shares to reduce the outstanding supply. In crypto, burns reduce the total or circulating supply of a token, which can create scarcity and deflationary pressure. However, unlike buybacks, token burns are typically irreversible and publicly verifiable on-chain.
Token burns exist on a spectrum from manual one-time events (a project team burning unsold tokens after a sale) to automated protocol-level mechanisms (Ethereum destroying base fees on every single transaction). The motivations, mechanics, and economic effects vary widely depending on the implementation.
How It Works
There are two primary mechanisms for burning tokens, each with different technical properties and trade-offs.
Send-to-Burn-Address
The simplest burn method involves transferring tokens to an address that no one controls. On Ethereum, two burn addresses are widely used:
- The null address:
0x0000000000000000000000000000000000000000(40 hex zeros) - The dead address:
0x000000000000000000000000000000000000dEaD
These addresses are considered provably unspendable because the probability of anyone generating a private key that maps to an address of all zeros is approximately 1 in 2^160: a number so large it is effectively impossible. When tokens are sent to these addresses, they still technically "exist" on-chain (the balance shows at that address), but they can never be moved or used again.
On Bitcoin, the equivalent is OP_RETURN, a script opcode that marks a transaction output as provably unspendable. Outputs using OP_RETURN can carry up to 80 bytes of arbitrary data and are excluded from the UTXO set, preventing blockchain bloat.
Smart Contract Burn Functions
Tokens following the ERC-20 token standard can implement a dedicated burn() function that reduces the contract's totalSupply state variable directly. This is more definitive than sending to a dead address because the tokens are destroyed at the contract level rather than simply made inaccessible.
// Standard ERC-20 burn function (OpenZeppelin pattern)
function _burn(address account, uint256 amount) internal {
require(account != address(0), "burn from zero address");
_balances[account] -= amount;
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}When burn() is called, the holder's balance decreases, totalSupply decreases, and a Transfer event is emitted to the zero address. Block explorers and analytics tools track these events to report total burned supply. Some contracts also implement burnFrom(), which allows burning tokens from another address given prior approval via the allowance mechanism.
Types of Token Burns
Protocol-Level Fee Burns
The most impactful burn mechanism operates at the protocol level, automatically destroying tokens as part of normal network operation. Ethereum's EIP-1559, activated in August 2021 during the London hard fork, is the defining example.
Before EIP-1559, all gas fees went to miners. After the upgrade, each transaction's fee is split into two parts: a base fee (determined algorithmically by network demand) that is burned, and an optional priority tip that goes to validators. The base fee adjusts up or down by up to 12.5% per block depending on network congestion.
Since activation, over 4.5 million ETH has been burned through EIP-1559. After Ethereum's transition to proof of stake in September 2022, new ETH issuance dropped roughly 90%. During periods of high network activity, the burn rate exceeds new issuance, making ETH temporarily net deflationary.
Scheduled and Quarterly Burns
Some projects commit to periodic burns on a fixed schedule. Binance pioneered this model with BNB, initially using 20% of quarterly profits to buy BNB on the open market and burn it. The goal: reduce the original 200 million BNB supply to 100 million.
In 2021, Binance transitioned to an Auto-Burn formula (BEP-95) that calculates burn amounts based on BNB's price and block production, removing the direct link to company profits. As of early 2026, approximately 117.5 million BNB have been burned across 29 quarterly events, with the supply approaching its 100 million target.
Buy-and-Burn Programs
In a buy-and-burn program, a project uses revenue or protocol fees to purchase its own token on the open market, then burns the purchased tokens. This creates buying pressure (from the market purchases) and supply reduction (from the burn) simultaneously.
MakerDAO (now Sky Protocol) uses this model: when the protocol generates surplus revenue from stability fees on DAI loans, it auctions the surplus for MKR tokens, which are then burned. This ties MKR's deflation directly to protocol usage and revenue.
Stablecoin Mint-Burn Mechanisms
Fiat-backed stablecoins like USDC and USDT use burning as a core part of their peg maintenance. When a user deposits dollars with the issuer, new stablecoin tokens are minted. When a user redeems stablecoins for dollars, those tokens are burned, maintaining a 1:1 relationship between circulating tokens and reserves.
This mint-burn cycle is fundamental to how fiat-backed stablecoins maintain their peg. Large minting events indicate new capital entering the crypto ecosystem, while large burns signal redemptions. Market analysts closely track these flows as indicators of broader market sentiment. For a deeper look at how different stablecoins manage their supply, see the stablecoin peg mechanisms comparison.
Proof-of-Burn Consensus
Proof-of-burn is an alternative consensus mechanism proposed by Iain Stewart around 2012. Participants burn cryptocurrency to earn the right to validate blocks: the more tokens burned, the higher the probability of being selected as the next block producer. The burned coins act as "virtual mining rigs."
Unlike proof of work, proof-of-burn does not require specialized hardware or massive electricity consumption. Instead, participants demonstrate commitment by permanently destroying economic value. The "mining power" from burned coins may decay over time, requiring periodic re-burning to maintain validation rights.
Proof-of-burn has seen limited real-world adoption. Slimcoin (launched 2014) used a hybrid PoW/PoS/PoB system, and Counterparty used a one-time proof-of-burn for its initial token distribution in January 2014, where participants burned approximately 2,130 BTC to receive XCP tokens.
Bitcoin and Permanent Supply Loss
Bitcoin has no built-in token burn mechanism. Its supply is governed strictly by the halving schedule, with a hard cap of 21 million BTC. However, Bitcoin experiences a form of unintentional, irreversible supply reduction through permanently lost coins.
Blockchain analytics firm Chainalysis estimated that approximately 3.7 million BTC are likely lost forever: roughly 20% of the total mined supply. Common causes include lost private keys, discarded hardware, deceased holders without key succession plans, and coins sent to incorrect addresses. Approximately 1.1 million BTC mined in Bitcoin's earliest days are attributed to Satoshi Nakamoto and have never moved.
While these lost coins were not intentionally burned, they serve the same economic function: permanently reducing the effective circulating supply. This makes Bitcoin's actual available supply significantly smaller than the roughly 19.7 million BTC mined to date, adding to its scarcity beyond the programmed 21 million cap.
Use Cases
- Deflationary tokenomics: projects burn tokens to reduce supply over time, creating scarcity that may support long-term value for remaining holders
- Fee management: protocol-level burns (EIP-1559) align network economics by destroying a portion of transaction fees rather than directing all fees to validators
- Stablecoin redemptions: burning tokens during dollar redemptions maintains the 1:1 peg and ensures circulating supply matches actual reserves
- Unsold token disposal: projects burn leftover tokens from initial sales or funding rounds to prevent future dilution and signal commitment to existing holders
- Revenue sharing: buy-and-burn programs let protocols distribute value to token holders indirectly by reducing supply rather than paying dividends, which may carry different regulatory implications
Risks and Considerations
Centralization and Trust
Many burn mechanisms are controlled by project teams or foundations, giving centralized entities significant power over token economics. When burns come from team-held reserves (as opposed to circulating supply), they may not meaningfully affect market dynamics since those tokens were not actively traded. Holders must trust that announced burns actually occur and that burn addresses are genuinely unspendable.
Market Manipulation Risks
Burn announcements can be used to influence token prices. The "buy the rumor, sell the news" dynamic around scheduled burns creates predictable trading patterns that sophisticated actors can exploit. Some projects have been criticized for using burn announcements primarily as marketing tactics, especially when the burned amount represents a negligible fraction of total supply.
No Guarantee of Price Impact
Reducing supply does not automatically increase price. Token value depends on demand, utility, market conditions, and many other factors beyond supply. If a token has unlimited or very high maximum supply, burns may be offset by ongoing issuance. Community-driven burn campaigns that destroy tiny fractions of total supply (such as SHIB community burns relative to its hundreds of trillions in circulation) have negligible economic effect.
Irreversibility
Token burns are permanent. A protocol that burns too aggressively may find itself with insufficient supply for future needs: liquidity incentives, ecosystem grants, or operational expenses. Unlike traditional finance where a company can issue new shares, some burn mechanisms cannot be reversed or paused without a protocol upgrade or hard fork.
Regulatory Uncertainty
Buy-and-burn programs that use corporate revenue to reduce token supply have been compared to stock buybacks, which are regulated in traditional markets. Regulators including the SEC have scrutinized these mechanisms. As of mid-2026, no definitive regulatory framework specifically addresses token burns in most jurisdictions.
Algorithmic Burn Failures
Algorithmic stablecoins that rely on automated mint-burn mechanisms between paired tokens carry systemic risk. The Terra/UST collapse in May 2022 demonstrated how a failing peg can trigger a death spiral: mass UST redemptions caused hyperinflationary LUNA minting, with LUNA supply exploding from 350 million to over 6.5 trillion tokens in days.
Why It Matters
Token burns are one of the most widely used mechanisms in crypto for managing supply and aligning incentives. Understanding how different burn implementations work is essential for evaluating a project's tokenomics. Protocol-level burns like EIP-1559 have reshaped how entire networks handle fees, while stablecoin mint-burn mechanisms underpin the largest asset class in crypto by transaction volume.
For Bitcoin and its ecosystem, the concept of supply reduction takes a different form. While Bitcoin itself does not burn tokens, Layer 2 solutions and stablecoin protocols built on Bitcoin (including stablecoins on Bitcoin) use mint-burn mechanics to manage token supply. Spark enables stablecoin transfers on Bitcoin's Layer 2, where USDB and other stablecoins rely on these same mint-burn principles for peg stability.
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.