Token Burn Mechanism
Definition pending verification.
Um Token Burn Mechanism é um processo integrado ao design de muitas criptomoedas e tokens, particularmente aqueles em plataformas de smart contract como Ethereum. Queimar um token envolve remover permanentemente uma quantidade específica de tokens de circulação, enviando-os para um endereço irrecuperável (frequentemente chamado de endereço 'burner' ou 'eater'). Esta ação é tipicamente irreversível e reduz o supply total do token. Token burns podem ser acionados por vários eventos ou regras definidas no smart contract, como uma porcentagem das transaction fees sendo queimada, uma quantidade fixa sendo queimada após certas ações, ou burns periódicos agendados. O principal objetivo econômico de um token burn é frequentemente criar pressão deflationary, aumentando a escassez dos tokens restantes e potencialmente impulsionando seu valor. Também pode ser usado para gerenciar o supply em resposta a condições específicas da network ou como parte da utility de um token, por exemplo, queimar tokens para acessar um serviço ou executar uma função específica dentro de uma 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;
🧒 Explique como se eu tivesse 5 anos
Queimar um [token](/pt/terms/token) é como tirar algumas moedas de circulação e jogá-las fora para sempre. Isso torna as moedas restantes mais raras, como um item colecionável de edição limitada.
🤓 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.