Token Burn Mechanism
Definition pending verification.
Token Burn Mechanism to proces zintegrowany z projektem wielu kryptowalut i tokenów, szczególnie tych na platformach smart contract, takich jak Ethereum. "Palenie" tokenu polega na trwałym usunięciu określonej ilości tokenów z obiegu poprzez wysłanie ich na adres, do którego nie ma dostępu (często nazywany adresem "burner" lub "eater"). Działanie to jest zazwyczaj nieodwracalne i zmniejsza całkowitą podaż tokenu. Token burns mogą być inicjowane przez różne zdarzenia lub zasady zdefiniowane w smart contract, takie jak spalenie procenta opłat transakcyjnych, stałej kwoty po wykonaniu określonych akcji, lub okresowe, zaplanowane burns. Głównym celem ekonomicznym token burn jest często stworzenie presji deflacyjnej, zwiększenie rzadkości pozostałych tokenów i potencjalne podniesienie ich wartości. Może być również używany do zarządzania podażą w odpowiedzi na określone warunki sieciowe lub jako część użyteczności tokenu, na przykład spalenie tokenów w celu uzyskania dostępu do usługi lub wykonania określonej funkcji w ramach zdecentralizowanej aplikacji (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;
🧒 Wyjaśnij jak 5-latkowi
Palenie tokenu jest jak wyjęcie kilku monet z obiegu i wyrzucenie ich na zawsze. To sprawia, że pozostałe monety są rzadsze, jak limitowana edycja kolekcjonerska.
🤓 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.