What it is
Buyback-and-burn is a mechanism where a protocol or treasury takes in revenue (trading fees, protocol income, etc.), uses some or all of it to purchase its own token on the open market, and then sends those tokens to an address no one controls (or calls a burn function that reduces total supply), permanently removing them from circulation. It's the crypto-native analog of a public company's share buyback program, with the added twist that "burning" makes the reduction verifiable and irreversible on-chain.
How it works
- The protocol generates revenue in some other asset — trading fees, a cut of yield, subscription payments — that accumulates in a treasury or fee-collection contract.
- On a schedule (daily, weekly) or based on a threshold being reached, the treasury (or a designated bot/multisig) executes a market purchase of the protocol's native token, usually via an on-chain DEX swap.
- The purchased tokens are sent to a burn address (a wallet with no known private key) or passed to a
burn()function that reduces the token'stotalSupplyin the contract's state. - Because the burn is on-chain and verifiable, anyone can audit exactly how many tokens have been removed and confirm the protocol followed through.
- With fewer tokens in circulation (assuming demand holds steady), each remaining token represents a larger share of the protocol's value, similar to how a stock buyback increases per-share ownership for remaining shareholders.
- Some designs make burns proportional to actual usage (e.g., burn tokens equal to a percentage of every transaction fee), tying scarcity directly to protocol activity rather than to a discretionary treasury decision.
Why designers use it
- Returns value to token holders without requiring a dividend-like distribution, which can carry regulatory or tax complications in some jurisdictions.
- Creates a direct, verifiable link between protocol usage/revenue and token scarcity, giving holders a tangible reason the token should appreciate as usage grows.
- Provides consistent buy pressure that can offset sell pressure from other sources (like liquidity mining emissions).
- Signals confidence: a protocol voluntarily spending real revenue to buy its own token suggests the team believes in long-term value, similar to insider buying in traditional markets.
Failure modes
- Revenue insufficiency: if the protocol's actual revenue is small relative to its market cap, the buyback has a negligible price impact and functions mostly as marketing rather than real economic support.
- Masking as fundamentals: burns can create an illusion of "deflationary" scarcity while underlying usage and revenue are actually declining, misleading holders about the protocol's real health.
- Treasury depletion: aggressive buybacks funded from a fixed treasury (rather than ongoing revenue) can drain reserves needed for development, security, or downturns.
- Timing manipulation: discretionary buybacks announced or executed around specific events can be used to prop up price short-term (e.g., before a token unlock) rather than reflecting sustainable demand.
- Burn theater: some protocols burn tokens that were never meant to circulate anyway (like an unallocated treasury portion), creating a burn narrative without any real reduction in circulating float.
What to check before using it
- Compare the dollar value of periodic buybacks against the token's daily trading volume and market cap to gauge whether the mechanism can plausibly move price.
- Verify burns happen on-chain and can be independently audited (check the burn address or
totalSupplyhistory) rather than trusting a dashboard or announcement. - Check whether burned tokens come from real revenue or from an already-idle treasury/team allocation, since the latter doesn't reflect genuine value capture.
- Assess whether committing revenue to buybacks starves other priorities (security audits, development, liquidity incentives) that matter more for long-term survival.
- Look at the burn schedule's discretion: is it automated and rule-based, or can a team pause/adjust it at will, which reintroduces trust assumptions the mechanism was meant to remove?