Token Burn Mechanism
Definition pending verification.
A Token Burn Mechanism is a process integrated into the design of many cryptocurrencies and tokens, particularly those on smart contract platforms like Ethereum. Burning a token involves permanently removing a specific amount of tokens from circulation by sending them to an unrecoverable address (often called a 'burner' or 'eater' address). This action is typically irreversible and reduces the total supply of the token. Token burns can be triggered by various events or rules defined in the smart contract, such as a percentage of transaction fees being burned, a fixed amount being burned upon certain actions, or periodic scheduled burns. The primary economic goal of a token burn is often to create deflationary pressure, increasing the scarcity of the remaining tokens and potentially driving up their value. It can also be used to manage supply in response to specific network conditions or as part of a token's utility, for example, burning tokens to access a service or perform a specific function within a decentralized application (dApp).
graph LR
Center["Token Burn Mechanism"]:::main
Pre_cryptography["cryptography"]:::pre --> Center
click Pre_cryptography "/terms/cryptography"
Rel_advanced_propulsion_systems["advanced-propulsion-systems"]:::related -.-> Center
click Rel_advanced_propulsion_systems "/terms/advanced-propulsion-systems"
Rel_von_neumann_architecture["von-neumann-architecture"]:::related -.-> Center
click Rel_von_neumann_architecture "/terms/von-neumann-architecture"
Rel_undercollateralized_lending["undercollateralized-lending"]:::related -.-> Center
click Rel_undercollateralized_lending "/terms/undercollateralized-lending"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧒 Explain Like I'm 5
Burning a [token](/en/terms/token) is like taking some coins out of circulation and throwing them away forever. This makes the remaining coins rarer, like a limited edition collectible.
🤓 Expert Deep Dive
Token burning mechanisms are implemented via smart contract functions that transfer tokens to a zero-address (e.g., 0x00...00) or a designated unspendable address. This function is often called burn(uint256 amount) or similar. The impact on tokenomics is significant: reducing circulating supply can increase the token's price per unit if demand remains constant or increases (a basic supply/demand principle). Burns can be event-driven (e.g., burning a portion of gas fees paid in the native token, as seen in Ethereum's EIP-1559), action-driven (e.g., burning tokens to mint an NFT), or scheduled (e.g., quarterly burns). The effectiveness relies heavily on the token's overall utility, demand, and the proportion of supply being burned relative to the total supply and inflation rate (if any). Careful economic modeling is required to ensure burns contribute positively to the ecosystem's long-term health rather than creating artificial scarcity without underlying value.