Glossary

Proof of Burn (PoB)

Proof of Burn is a consensus mechanism where participants permanently destroy tokens by sending them to an unspendable address, earning the right to validate blocks proportional to the amount burned.

Key Takeaways

  • Proof of Burn is a consensus mechanism where participants permanently destroy cryptocurrency by sending it to a verifiably unspendable burn address, earning block validation rights proportional to the amount burned.
  • PoB replicates the economic sacrifice of Proof of Work without the energy consumption: burned coins act as "virtual mining rigs" that grant the right to produce blocks, with mining power that decays over time.
  • Counterparty used a PoB event in 2014 to bootstrap its XCP token supply by burning 2,124 BTC. Slimcoin remains the only blockchain using PoB as a primary consensus algorithm, reflecting the mechanism's limited real-world adoption.

What Is Proof of Burn?

Proof of Burn (PoB) is a blockchain consensus mechanism in which participants permanently destroy cryptocurrency by sending it to a verifiably unspendable address. In return, they receive the right to validate transactions and produce new blocks. The amount of coins burned determines a participant's probability of being selected to create the next block: more coins burned means greater "virtual mining power."

Iain Stewart proposed Proof of Burn in 2012 on the Bitcointalk forum, roughly one year after Proof of Stake was introduced. His central insight was that both PoW and PoB require participants to sacrifice something of real economic value, but PoB eliminates the need for specialized mining hardware and massive electricity consumption. As Stewart put it: "Burnt coins are mining rigs."

The mechanism sits conceptually between Proof of Work and Proof of Stake. Like PoW, the sacrifice is irreversible: once coins are burned, they cannot be recovered, just as spent electricity cannot be recaptured. Unlike PoS, where staked coins remain in the validator's control and can be unlocked later, burned coins are gone forever. This irreversibility eliminates the nothing-at-stake problem that affects some PoS designs.

How It Works

The Proof of Burn process follows a cycle of destruction, selection, and reward. Participants commit economic value upfront by burning coins, then earn block rewards over time as compensation for that sacrifice.

  1. A participant acquires coins (often from a different chain, such as Bitcoin) and sends them to a verifiably unspendable address
  2. The burn transaction is recorded on-chain, creating a permanent, publicly verifiable proof of destruction
  3. The protocol assigns "virtual mining power" proportional to the amount burned
  4. When the network needs a new block, it selects a validator with probability weighted by their accumulated burn amount
  5. The selected validator produces the block and earns the block reward (newly minted coins)

Virtual Mining Rigs

Stewart's original design models burned coins as simulated mining hardware. Each burn transaction creates a "virtual mining rig" that competes for block production, but with a critical property: the rig's power decays exponentially over time. This mimics how physical mining equipment becomes obsolete as newer hardware enters the market.

The decay means that a single large burn does not grant permanent mining dominance. Participants must periodically burn additional coins to maintain competitive mining power, ensuring ongoing commitment to the network rather than a one-time purchase of perpetual influence.

Unspendable Addresses

For PoB to work, the network must be able to verify that burned coins are truly irretrievable. There are several methods to create provably unspendable addresses:

  • Script-based addresses: in Bitcoin's UTXO model, an address derived from a script that always evaluates to false (for example, a script that checks if 4 equals 5) can never be spent
  • OP_RETURN outputs: Bitcoin's native opcode that marks a transaction output as provably unspendable, allowing up to 80 bytes of arbitrary data to be embedded alongside the burn
  • Vanity burn addresses: addresses like Counterparty's 1CounterpartyXXXXXXXXXXXXXXXUWLpVr are constructed so the first 28+ characters are chosen rather than random, making it computationally infeasible to find a matching private key

Each method provides on-chain proof that the coins are permanently destroyed. Third parties can independently verify a burn by inspecting the transaction and the destination address.

Simulated Hash Formula

Stewart's protocol computes a simulated hash for each burn transaction to determine block production eligibility:

simulated_hash(t) = (c / b)
  × exp((t - t_burn) / E)
  × HASH(signatures ++ block_number ++ RAND(t))

Where:
  b = amount of coins burned
  c = constant scaling factor
  E = decay rate parameter
  t = current time
  t_burn = time the burn occurred
  RAND(t) = randomness source

The c/b term ensures that larger burns produce lower (better) simulated hashes, giving proportionally greater mining power. The exponential decay factor causes older burns to lose effectiveness over time. The hash function component introduces randomness that mirrors the probabilistic nature of PoW mining.

Notable Implementations

Counterparty (XCP)

Counterparty is the most well-known project to use Proof of Burn, though it used the mechanism for initial token distribution rather than ongoing consensus. Between January 2 and February 3, 2014, spanning exactly 5,000 Bitcoin blocks, participants burned Bitcoin to receive newly created XCP tokens.

The results of the burn period:

ParameterValue
Burn address1CounterpartyXXXXXXXXXXXXXXXUWLpVr
Total BTC burned2,124.63 BTC
Total XCP created2,648,755.92 XCP
Exchange rate1,000 to 1,500 XCP per BTC (decreasing linearly)
Per-address limit1 BTC maximum

Counterparty chose PoB to ensure equal opportunity for all participants without pre-mining, centralized token sales, or the legal complexities of an ICO. The decreasing exchange rate rewarded early participants who took on greater risk when the project was unproven.

Slimcoin (SLM)

Launched in May 2014, Slimcoin is the only cryptocurrency that uses Proof of Burn as a primary block-generation mechanism. It combines three consensus algorithms: PoW, PoS, and PoB. In Slimcoin's implementation, burn-based mining is limited to one hash per burn transaction per 90 seconds, meaning virtually any computer can participate without specialized hardware.

Slimcoin's triple-consensus design treats PoB as a middle ground: participants trade a short-term financial loss (the burned coins) for a mid-to-long-term advantage (ongoing block rewards). The project emphasizes that PoB rewards "entrepreneurial risk, not wealth," differentiating it from PoS systems where large holders earn proportionally larger returns on their existing capital.

Factom (FCT)

Factom used a "burn and mint" model where FCT tokens were burned to use the network's data-anchoring service. The protocol minted 73,000 new tokens per month for validators, and the service cost was pegged at $0.001 per entry regardless of the FCT market price. This created a self-regulating equilibrium: when FCT price rose, fewer tokens needed to be burned per entry, and vice versa.

PoB vs. PoW vs. PoS

Understanding where Proof of Burn fits requires comparing it against the two dominant consensus mechanisms. For a deeper look at Bitcoin's approach, see Bitcoin mining economics.

AspectProof of WorkProof of StakeProof of Burn
Resource committedElectricity and hardwareLocked cryptocurrencyDestroyed cryptocurrency
Sacrifice reversibilityIrreversibleReversible (unstake later)Irreversible
Energy consumptionVery highLowVery low
Hardware requirementSpecialized ASICsStandard nodeStandard node
Nothing-at-stake riskNoneYes (mitigated by slashing)None (coins destroyed)
Attack cost51% of hashrate51% of staked supplyBurning significant supply

PoB shares PoW's irreversibility, which provides strong security guarantees: an attacker who burns coins to gain mining power cannot recover those coins if the attack fails. This makes attacks self-punishing in a way that PoS slashing attempts to replicate through penalty mechanisms.

Why It Matters

Proof of Burn addresses a fundamental question in blockchain design: how can a network establish trust without consuming vast physical resources? While PoW has proven its security through Bitcoin's track record, its energy consumption remains a persistent concern. PoB offers a theoretical alternative that preserves the irreversible sacrifice model without the environmental cost.

The mechanism is also relevant to token burn strategies more broadly. Many projects use burns for deflationary tokenomics, supply management, or fair distribution: concepts that trace back to PoB's core principle that destroying value can create network value. Ethereum's EIP-1559 base fee burn, while not a consensus mechanism, applies the same economic logic of reducing circulating supply to align incentives.

For Bitcoin Layer 2 networks and off-chain protocols, PoB's significance is primarily historical and conceptual. Projects like Spark achieve scalability through different mechanisms, but the principle of proving commitment through irreversible action remains a foundational idea across all consensus designs.

Formal Academic Treatment

In 2020, researchers Kostis Karantias, Aggelos Kiayias, and Dionysis Zindros published the first formal cryptographic treatment of Proof of Burn at Financial Cryptography and Data Security 2020. Their paper defined three essential security properties for any burn protocol:

  • Unspendability: a verified burn address can never be used for spending under any circumstances
  • Binding: metadata can be cryptographically tied to a specific burn, enabling attribution and cross-chain proofs
  • Uncensorability: burn addresses should be indistinguishable from regular addresses, preventing miners from selectively censoring burn transactions

The researchers demonstrated that burn verification could be implemented as an Ethereum smart contract, establishing feasibility for cross-chain burn proofs where a user burns coins on Bitcoin and proves the burn on another chain.

Risks and Considerations

Wealth Concentration

Participants with more coins to burn gain proportionally more mining power. This creates a dynamic where well-funded actors can dominate block production, similar to the advantage large stakeholders have in DPoS systems. The decay mechanism partially mitigates this by requiring ongoing burns, but it does not eliminate the structural advantage of wealth.

Limited Adoption and Battle-Testing

No major blockchain network has adopted PoB as its primary consensus mechanism. Slimcoin remains the only live implementation using PoB for block production, and it operates at a small scale. This limited adoption means PoB has not been tested under the adversarial conditions and economic pressures that PoW (through Bitcoin) and PoS (through Ethereum) face daily. The theoretical security properties remain largely unproven at scale.

Permanent and Irreversible Loss

If a PoB network fails, loses value, or is abandoned, participants cannot recover their burned coins. In PoS, validators can unstake and exit. In PoW, miners can repurpose or resell their hardware. PoB participants bear the full downside risk: their sacrifice is unconditionally permanent regardless of the network's future.

Sustainability Concerns

A PoB network must balance burn rates with new coin issuance. If participants burn coins faster than the protocol mints new ones, the circulating supply contracts to the point where meaningful economic activity becomes difficult. Conversely, if block rewards are too generous, the deflationary benefit of burning is offset by inflation.

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.