> For the complete documentation index, see [llms.txt](https://www.0x1.academy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.0x1.academy/dai-bi-jing-ji-xue/tong/hang/undefined-1.md).

# 銷燬

### 「銷毀」聽起來很浪費，但在代幣經濟中，它是控制供應量的重要工具。就像央行回收貨幣一樣，銷毀代幣可以減少供應、抵抗通膨、甚至推升價格。

***

## 什麼是銷毀？

| 概念 | 說明                |
| -- | ----------------- |
| 英文 | Burn / Token Burn |
| 定義 | 永久移除代幣            |
| 方式 | 發送到無法使用的地址        |
| 效果 | 減少總供應量            |

***

## 銷毀的原理

### 技術實現

```
代幣銷毀的原理：

方法 1：發送到黑洞地址
- 地址：0x000...dead
- 沒有人有私鑰
- 代幣永遠無法取回

方法 2：智能合約銷毀
function burn(uint256 amount) public {
    _totalSupply -= amount;
    _balances[msg.sender] -= amount;
    emit Transfer(msg.sender, address(0), amount);
}

結果：
- 代幣從流通中移除
- 總供應量減少
- 無法逆轉
```

### 銷毀地址

| 地址類型 | 說明                         |
| ---- | -------------------------- |
| 黑洞地址 | 0x000...000 或 0x000...dead |
| 銷毀合約 | 專門的銷毀智能合約                  |
| 可驗證  | 任何人可以在區塊瀏覽器查看              |

{% hint style="info" %}
**為什麼是黑洞地址？**

黑洞地址是沒有人擁有私鑰的地址。發送到這個地址的代幣，永遠無法被取出或使用，等同於銷毀。
{% endhint %}

***

## 銷毀的類型

### 常見銷毀機制

```
不同的銷毀模式：

1. 定期銷毀
   - 定期（如每季）銷毀固定量
   - 例：BNB 的季度銷毀

2. 交易銷毀
   - 每筆交易銷毀一部分
   - 例：EIP-1559 的 Base Fee

3. 回購銷毀
   - 用利潤買回並銷毀
   - 類似股票回購

4. 事件銷毀
   - 特定事件觸發銷毀
   - 例：達成里程碑
```

### 代表案例

| 項目   | 銷毀機制           |
| ---- | -------------- |
| BNB  | 季度銷毀，目標減至 1 億  |
| ETH  | EIP-1559 交易費銷毀 |
| SHIB | 社群主導銷毀         |
| LUNC | 交易稅銷毀          |

***

## 以太坊的 EIP-1559

### 機制說明

```
EIP-1559 的銷毀機制：

之前：
交易費 → 全部給礦工

之後（EIP-1559）：
交易費 = Base Fee + Priority Fee
         ↓           ↓
       銷毀        給驗證者

效果：
- 每筆交易都銷毀一部分 ETH
- 網路繁忙時銷毀更多
- 某些日子 ETH 變成通縮

數據：
- 自 2021/8 啟用
- 已銷毀數百萬 ETH
```

{% hint style="info" %}
**超音波貨幣**

當 ETH 的銷毀量超過新發行量時，總供應量會減少，ETH 社群稱此為「超音波貨幣」（Ultrasound Money）。
{% endhint %}

***

## 銷毀的經濟效果

### 理論影響

| 效果   | 說明         |
| ---- | ---------- |
| 減少供應 | 流通量變少      |
| 通縮壓力 | 抵抗發行造成的通膨  |
| 價值支撐 | 理論上有助價格    |
| 信號效果 | 表示項目方重視持有者 |

### 注意事項

| 注意    | 說明           |
| ----- | ------------ |
| 不保證漲價 | 供需還有其他因素     |
| 銷毀量要夠 | 象徵性銷毀沒意義     |
| 持續性   | 一次性 vs 持續性銷毀 |
| 透明度   | 銷毀應可驗證       |

{% hint style="warning" %}
**銷毀不等於漲價**

很多人以為銷毀就會漲價，但這不一定。如果需求沒有增加，或銷毀量太少，價格不會有明顯變化。不要被「銷毀」這個詞騙了。
{% endhint %}

***

## 如何查詢銷毀

### 查詢工具

| 工具               | 用途        |
| ---------------- | --------- |
| Etherscan        | 查以太坊銷毀    |
| BscScan          | 查 BNB 鏈銷毀 |
| ultrasound.money | ETH 銷毀追蹤  |
| 官方公告             | 項目方銷毀報告   |

***

## 延伸閱讀

* [鑄造](/dai-bi-jing-ji-xue/tong/hang/zao.md) — 代幣發行
* [總流通量](/dai-bi-jing-ji-xue/tong/hang/liu-tong-liang.md) — 供應量概念
* [代幣經濟](/dai-bi-jing-ji-xue/tong.md) — 經濟模型

***

#### 參考資料

* [ultrasound.money](https://ultrasound.money/)
* EIP-1559 說明


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.0x1.academy/dai-bi-jing-ji-xue/tong/hang/undefined-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
