> For the complete documentation index, see [llms.txt](https://docs.filda.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.filda.io/zhong-wen/xiang-mu-jie-shao/ye-wu-mo-xing/qing-suan-gui-ze.md).

# 清算规则

当用户账户的贷款资产与抵押资产比例超过一定限度以后，FilDA协议会触发清算，将用户的抵押资产放入清算市场，任何人都可以做清算商参与清算。

### 抵押率

抵押率是指资产作为抵押品时可以被授信的价值。因为加密资产价格波动比较大，所以不能按实时价格足额授信。例如，BTC的抵押率是85%，那么1万美元BTC可以被授信为价值8500美元。也就是说，抵押1万美元的BTC可以借给你8500美元现金。

### ​贷款额度&#x20;

贷款额度是指根据用户抵押品的授信价值计算出的可贷资金额度，是按账户所有资产合并计算的。用户将存款转为质押以后，可以增加其贷款额度。

$$
贷款额度 = \sum (质押资产市值 \* 抵押率)\_{n=1}^{质押资产种类数量}
$$

### 贷款使用率和安全线&#x20;

```
贷款使用率 = 实际贷款额 / 账户贷款额度
Loan Utilization Rate = actual loan/ Loan limit
```

用户必须让账户的贷款使用率低于100%，否则将触发清算。

为了避免由于资产价格的日常导致贷款使用率超100%，FilDA在用户的贷款额度基础上设置了85%的安全线，用户主动申请贷款的时候，贷款总额不能超过抵押总额的85%。

举例：

用户存入价值1万美元的BTC，抵押率是85%，那么贷款总额是8500美元，如果他在FilDA上操作申请贷款，实际可以申请到的贷款额是7225美元。他此时的贷款使用率是85%。

### 清算&#x20;

接上面的例子，如果此后BTC价格下降了10%，他的贷款额度将变为9000美元，还是按照85%的抵押率计算，他的贷款额度变为7650。仍然大于他的实际贷款7225美元，所以不会触发清算。但他的贷款使用率变成了94%。如果BTC价格继续下跌5%，他抵押的BTC价值低于8500美元时。也就是他的贷款额度低于实际贷款7225美元时，同时也表示他的贷款使用率超过100%时，触发清算。

一旦用户的账户变成待清算状态，那么任何人都可以以9折价格购买其抵押品资产。这是对清算商的奖励，同时也是对贷款人的惩罚。

清算商可以从待清算账户中挑选任意资产进行清算，一次可以购买其清算资产的50%，如果一次清算之后仍不能让账户回到正常状态，可以多次清算，直至贷款使用率回到100%以内。

### 建议

用户一定要关注账户的贷款使用率的进度条，距离100%越远越安全，越靠近100%越可能被清算。


---

# 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://docs.filda.io/zhong-wen/xiang-mu-jie-shao/ye-wu-mo-xing/qing-suan-gui-ze.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.
