Burn Address
A cryptocurrency address with no known private key, used to permanently remove tokens from circulation.
Key Takeaways
- A burn address is a valid cryptocurrency address where no one possesses the private key, making any funds sent to it permanently inaccessible and effectively destroyed.
- Bitcoin offers two burn approaches: "eater" addresses (like
1BitcoinEaterAddressDontSend...) that are probably unspendable, and OP_RETURN outputs that are provably unspendable at the consensus level. - Burns serve multiple purposes: reducing token supply for deflationary economics, powering proof-of-burn consensus, and destroying redeemed stablecoins through the mint-burn mechanism.
What Is a Burn Address?
A burn address is a cryptocurrency wallet address to which tokens can be sent but never retrieved. Because no one holds the corresponding private key, any funds transferred to a burn address are permanently removed from circulating supply. The transaction is recorded on the blockchain, providing transparent, verifiable proof that the burn occurred.
Burn addresses are sometimes called "eater addresses" or "dead addresses." They function as a one-way destination: anyone can send to them, but no entity (including the original developers or token issuers) can ever spend the funds. This irreversibility is the entire point: it provides a credible, trustless mechanism for permanent token destruction.
The concept exists across every major blockchain. Bitcoin has famous eater addresses and the OP_RETURN opcode. Ethereum has widely used dead addresses and protocol-level burning via EIP-1559. The specific implementation varies, but the core principle remains: tokens go in, nothing comes out.
How It Works
Every cryptocurrency transaction requires a private key to spend funds from an address. A burn address exploits this by being a valid address format for which no private key is known to exist. The address passes the blockchain's validation checks (including checksum verification), but its underlying hash was chosen deliberately rather than derived from a real key pair.
For Bitcoin, addresses are derived through a chain of cryptographic hash functions (SHA-256 and RIPEMD-160). Reversing this process to find a private key from a known address would require brute-forcing approximately 2^160 possible keys: a number so large that it would take more energy than our solar system could produce during its lifetime. This computational infeasibility is what makes burn addresses practically permanent.
Eater Addresses
The most recognizable burn addresses use human-readable vanity patterns that make their purpose obvious. The body of the address spells out a message, while the final characters serve as a valid checksum for that contrived hash value:
# Bitcoin's most famous burn address
1BitcoinEaterAddressDontSendf59kuE
# Counterparty's proof-of-burn address (2,124 BTC burned in 2014)
1CounterpartyXXXXXXXXXXXXXXXUWLpVr
# Ethereum's widely used dead address
0x000000000000000000000000000000000000dEaD
# Ethereum zero address
0x0000000000000000000000000000000000000000The Bitcoin address 1BitcoinEaterAddressDontSendf59kuE has received over 13 BTC in cumulative sends, none of which can ever be spent. Ethereum's 0x...dEaD address holds thousands of ETH plus hundreds of different ERC-20 tokens.
Eater addresses are considered "probably unspendable" rather than provably so. A corresponding private key technically exists somewhere in the vast keyspace, but finding it is computationally impossible with current or foreseeable technology.
OP_RETURN: Provably Unspendable Burns
Bitcoin provides a stronger guarantee through OP_RETURN, a Bitcoin Script opcode that marks a transaction output as provably unspendable. Unlike eater addresses, no private key can ever unlock an OP_RETURN output: the Bitcoin protocol itself prevents it at the consensus level.
# OP_RETURN output structure
scriptPubKey: OP_RETURN <data up to 80 bytes>
# Example: burning with an embedded message
OP_RETURN "Proof of burn for project XYZ"
# The output amount is typically 0 satoshis
# Any non-zero amount is permanently destroyedOP_RETURN was made standard in Bitcoin Core 0.9.0 (2014) with an initial data limit of 40 bytes, later raised to 80 bytes in Bitcoin Core 0.11.0 (2015). Because full nodes can safely prune OP_RETURN outputs from the UTXO set, this approach avoids the database bloat caused by earlier methods of embedding data in fake transaction outputs.
Provably vs. Probably Unspendable
This distinction matters for anyone evaluating the credibility of a token burn:
| Property | Eater Address | OP_RETURN |
|---|---|---|
| Guarantee | Computationally infeasible to spend | Consensus-level unspendable |
| Private key exists? | Yes, but effectively impossible to find | No private key concept applies |
| UTXO set impact | Permanently occupies UTXO set | Pruned by full nodes |
| Verification | Requires trust in hash function security | Verifiable by protocol rules alone |
| Data embedding | No | Up to 80 bytes |
Protocol-Level Burns
Some blockchains implement burning at the protocol level rather than relying on addresses. Ethereum's EIP-1559 (activated August 2021) burns the base fee of every transaction automatically. The ETH does not go to any address: it simply ceases to exist. Approximately 4.6 million ETH have been burned through this mechanism since its activation.
Similarly, modern smart contract token standards include dedicated burn() functions that decrease a token's totalSupply variable directly, rather than sending tokens to a dead address. This is more elegant than eater addresses because it reduces the on-chain supply counter itself.
Use Cases
Deflationary Tokenomics
Projects burn tokens to reduce circulating supply, creating scarcity pressure. The most prominent example is BNB's quarterly Auto-Burn program, which targets reducing total supply from 200 million to 100 million BNB. As of Q2 2026, over 65 million BNB have been burned cumulatively across 35 quarterly events, bringing the remaining supply to approximately 134.8 million.
Ethereum also became partially deflationary after EIP-1559 and the transition to proof of stake. During periods of high network activity, the base fee burn can exceed new issuance, temporarily shrinking total supply.
Proof-of-Burn Consensus
Proof-of-burn is a consensus mechanism where participants destroy cryptocurrency to earn block-production rights. Instead of expending electricity (proof of work) or locking capital (proof of stake), miners burn coins to demonstrate economic commitment. The more coins burned, the greater the probability of being selected to produce the next block.
The most famous proof-of-burn event was Counterparty's January 2014 distribution, where approximately 2,124 BTC were burned to 1CounterpartyXXXXXXXXXXXXXXXUWLpVr, creating 2.65 million XCP tokens. This demonstrated a fair-launch model: the only way to obtain XCP was to provably destroy Bitcoin.
Stablecoin Redemption
Stablecoin issuers use the mint-burn mechanism to maintain their dollar peg. When a user redeems stablecoins for fiat currency, the process works as follows:
- The holder sends stablecoins to the issuer for redemption
- The issuer's smart contract executes a burn function, permanently destroying the tokens and decreasing total on-chain supply
- The issuer transfers equivalent fiat from reserves to the customer's bank account
- Reserve balance decreases proportionally
This mechanism keeps supply aligned with reserves. USDC (Circle) uses a quota-based multi-minter system with a dedicated burn() function, while USDT (Tether) concentrates minting and burning under a single owner multisig. For a deeper look at how different stablecoins maintain their peg, see the stablecoin peg mechanisms comparison.
Cross-Chain Token Movement
Burns are also central to cross-chain token transfers. Circle's CCTP (Cross-Chain Transfer Protocol) uses a depositForBurn function that destroys USDC on the source chain and emits a burn event, after which equivalent USDC is minted on the destination chain. This burn-and-mint pattern ensures that total supply across all chains remains constant.
Why It Matters
Burn addresses and token burns are foundational to how cryptocurrency networks manage supply. They enable deflationary monetary policies without requiring a central authority, provide fair-launch distribution mechanisms, and underpin the redemption process for every major stablecoin.
For Bitcoin Layer 2 networks like Spark, understanding burn mechanics is relevant because token movement between layers often involves lock-and-mint or burn-and-mint patterns. The ability to verifiably destroy tokens on one layer while creating them on another is what enables trustless bridging between Bitcoin's base layer and scaling solutions.
Risks and Considerations
Irreversibility
Sending funds to a burn address is permanent. There is no recovery mechanism, no customer support, and no reversal process. The blockchain's immutability makes this absolute. Users have accidentally sent funds to burn addresses with no way to recover them.
Verification Challenges
Not all claimed burns are equal. When a project announces a token burn, verify the mechanism used. Sending tokens to an address the project team controls is not a burn: it is a transfer. Genuine burns use provably unspendable outputs (like OP_RETURN), well-known eater addresses, or smart contract burn() functions that reduce totalSupply.
Smart Contract Risks
In token implementations that use smart contract burn() functions, bugs in the burn logic could lead to unintended token destruction. Improperly implemented burn functions might allow unauthorized callers to burn other users' tokens, or fail to properly update supply accounting.
UTXO Set Bloat
On Bitcoin, sending funds to eater addresses creates UTXOs that can never be spent but permanently occupy the UTXO set that every full node must maintain. This is why OP_RETURN is the preferred burn method: full nodes can prune these outputs, keeping the UTXO database lean.
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.