Token Burn Mechanism

Definition pending verification.

A Token Burn Mechanismは、多くの暗号通貨やトークンの設計に組み込まれているプロセスであり、特にEthereumのようなスマートコントラクトプラットフォーム上で利用されます。トークンをバーン(焼却)するとは、特定の量のトークンを回収不可能なアドレス(しばしば「バーナー」または「イーター」アドレスと呼ばれる)に送信することによって、流通から永久に削除することを意味します。このアクションは通常不可逆であり、トークンの総供給量を削減します。トークンバーンは、トランザクション手数料の一定割合がバーンされる、特定のアクション時に固定額がバーンされる、または定期的にスケジュールされたバーンなど、スマートコントラクトで定義されたさまざまなイベントまたはルールによってトリガーされる可能性があります。トークンバーンの主な経済的目標は、デフレ圧力を生み出し、残りのトークンの希少性を高め、その価値を上昇させることであることがよくあります。また、特定のネットワーク条件に応じた供給量の管理や、トークンユーティリティの一部として、例えば、サービスへのアクセスや分散型アプリケーション(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;

      

🧒 5歳でもわかるように説明

トークンをバーンすることは、一部のコインを流通から取り除き、永遠に捨ててしまうようなものです。これにより、残りのコインはより希少になり、限定版のコレクティブルのようになります。

🤓 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.

🔗 関連用語

前提知識:

📚 出典