> For the complete documentation index, see [llms.txt](https://axon-finance.gitbook.io/axon-finance-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://axon-finance.gitbook.io/axon-finance-docs/part-iii-ji-shu-jia-gou/part3-architecture/3-5-oracle-safety.md).

# 3.5 稳定币与喂价：多源校验与熔断

## 喂价：支付链的隐形命门

一条 PayFi 链需要不断回答一个问题：**「1 单位稳定币现在值多少法币？」** 这个看似简单的问题，是整条链的隐形命门。因为货币市场的清算、信贷的抵押率、风险准备金的计提，全都依赖这个价格。

喂价（price feed / oracle）一旦出错，后果是灾难性的：一个错误的价格可能触发本不该发生的清算，而清算又会引发连锁反应——这是 DeFi 历史上多次「喂价攻击」与「脱锚踩踏」的根源。**对一条承载真实资金的支付链，喂价安全不是可选项，而是生死线。**

## 三层防线

AXON 在喂价与稳定币锚定上设三层防线：

* **多源校验**——法币锚定价格不依赖单一来源，而是从多个独立喂价源交叉校验，防止单点被操纵或失效。
* **偏差熔断**——当各喂价源之间、或喂价与合理区间之间出现异常偏差时，系统触发熔断，暂停相关的清算 / 结算动作，而不是盲目按错误价格执行。
* **脱锚保护**——当稳定币本身出现脱锚迹象时，触发保护机制，避免在异常锚定下发生连锁清算。

## 喂价熔断的决策流

把这套逻辑画成决策流，它是一个「宁可暂停，不可算错」的保守设计：

```mermaid
flowchart TB
    A["采集多源喂价<br/>Source 1 / 2 / 3 …"] --> B{"多源间偏差<br/>是否超阈值？"}
    B -->|"偏差正常"| C{"价格是否在<br/>合理锚定区间？"}
    B -->|"偏差过大"| H["触发熔断<br/>暂停清算 / 结算"]
    C -->|"是"| D["采用聚合价格<br/>正常结算 / 清算"]
    C -->|"脱锚迹象"| H
    H --> I["告警 · 人工 / 治理介入<br/>恢复后重新校验"]
    I --> A
    style H fill:#f5541c,stroke:#0a0908,color:#fff
    style D fill:#0a0908,stroke:#f5541c,color:#fff
```

这个流程体现的设计哲学与 [3.4](/axon-finance-docs/part-iii-ji-shu-jia-gou/part3-architecture/3-4-payment-finality.md) 一脉相承：**面对不确定，宁可保守暂停，也不冒险算错。** 一次不该发生的清算所造成的信任损害，远大于一次短暂暂停的不便。对支付基础设施，稳健优先于激进。

## 稳定币策略：多资产、可扩展

AXON 的稳定币策略遵循几条原则：

* **多资产**——不绑定单一稳定币，而是设计为可接入多种主流合规稳定币，降低对单一发行方的依赖；
* **法币锚定优先**——首发聚焦法币（尤其美元）锚定的稳定币，因为它们是当下跨境支付与结算的主力；
* **可插拔喂价**——喂价源设计为可插拔、可扩展，以便随着生态成熟接入更多独立、高质量的价格源（预言机合作见 [6.3](/axon-finance-docs/part-vi-lu-xian-tu-yu-zhi-li/part6-roadmap/6-3-team-partners.md)）。

喂价安全与稳定币锚定，是 PayFi 货币市场（[4.2](/axon-finance-docs/part-iv-payfi-yin-qing/part4-payfi/4-2-money-market.md)）能够安全运转的前提——没有可信的价格，就没有可信的信贷与清算。

***

*延伸阅读：*[*3.6 可插拔合规网关*](/axon-finance-docs/part-iii-ji-shu-jia-gou/part3-architecture/3-6-compliance-gateway.md) *·* [*4.2 PayFi 货币市场*](/axon-finance-docs/part-iv-payfi-yin-qing/part4-payfi/4-2-money-market.md)


---

# 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, and the optional `goal` query parameter:

```
GET https://axon-finance.gitbook.io/axon-finance-docs/part-iii-ji-shu-jia-gou/part3-architecture/3-5-oracle-safety.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
