Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct typos and formatting inconsistencies #1232

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion defi/RAI/GEB.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ Relevant smart contracts:

- SingleSpotDebtCeilingSetter - 这个合约通过查看 SAFEEngine 中的当前 globalDebt 来重新计算特定抵押品类型的债务上限

- ESMThresholdSSetter - 这个合约通过使用 ESM 重新计算燃烧和触发结算所需的阈值
- ESMThresholdSetter - 这个合约通过使用 ESM 重新计算燃烧和触发结算所需的阈值

## Governance Module

Expand Down
6 changes: 3 additions & 3 deletions defi/RAI/GovernanceMinimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ GEB 的每个组件都有不同程度的治理最小化潜力。

- 清算引擎 - 可选合约,以系统货币减去会计引擎和稳定费用库中的剩余依据为百分比自动设置 onAuctionSystemCoinLimit。

- 会计引擎 - 可选合约可能会设置 surplusBuffer,以覆盖系统货币未偿还供应量的特定百分比,不包括会计引擎和稳定费用库中的剩余金还有稳定费用库/,一个强制性的合约,根据协议令牌和系统币市场价格定期设置 initialDebtAuctionMintedTokens 和 debtAuctionBidSize。
- 会计引擎 - 可选合约可能会设置 surplusBuffer,以覆盖系统货币未偿还供应量的特定百分比,不包括会计引擎和稳定费用库中的剩余金还有稳定费用库,一个强制性的合约,根据协议令牌和系统币市场价格定期设置 initialDebtAuctionMintedTokens 和 debtAuctionBidSize。

- ESM - thresholdSetter,自动将 triggerThreshold 设置为当前协议令牌未偿还供应量的百分比。

Expand Down Expand Up @@ -84,6 +84,6 @@ GEB(例如 RAI)将经历三个级别(或阶段)的治理最小化:
- ProtocolTokenPrintingPermissions
- Auto Surplus Buffer Setter

## Level 3
### Level 3

此时,所有剩余的治理必须由社区掌握。社区将评估完全从更多合约中删除控制的可行性(例如 PID)。
此时,所有剩余的治理必须由社区掌握。社区将评估完全从更多合约中删除控制的可行性(例如 PID)。
2 changes: 1 addition & 1 deletion defi/RAI/PID.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ contract PIRawPerSecondCalculator is SafeMath, SignedSafeMath {
// newRedemptionRate cannot be lower than 10^0 (1) because of the way rpower is designed
bool negativeOutputExceedsHundred = (boundedPIOutput < 0 && -boundedPIOutput >= int(defaultRedemptionRate));

// If it is smaller than 1, set it to the nagative rate limit
// If it is smaller than 1, set it to the negative rate limit
if (negativeOutputExceedsHundred) {
newRedemptionRate = NEGATIVE_RATE_LIMIT;
} else {
Expand Down
4 changes: 2 additions & 2 deletions defi/RAI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RAI选择了几个法币支持的稳定币(即 USDC、USDT、TUSD),然后

**2021.2.17** RAI正式上线以太坊主网,上线5天之后,总锁仓ETH超过10万枚。一个月后公布了FLX的代币经济学和用例( FLX 对于 RAI 就像 MKR 对于 DAI 一样)。

**2022.2** 协议开始增加intergral参数
**2022.2** 协议开始增加integral参数

**2022.5** 对部分合约进行了“无治理”升级;

Expand All @@ -65,7 +65,7 @@ RAI 采用的是双代币机制,有单独的治理代币,其治理代币是
- **市场价格**:市场评估RAI的价格
- **赎回率**:用于激励用户产生更多杠杆或偿还债务的利率(可以是正数或负数);赎回率逐渐改变赎回价格;
- **借贷能力**:一个单位的抵押品可以借出多少个RAI;每次系统收到其接受的抵押品类型的价格供给更新时,供给数据除以赎回价格,然后再除以清算率,可以计算借贷能力;以ETH为例:假设ETH的价格为1000美元,清算比例为150%,如果当前RAI赎回价格为3美元;1ETH 的借贷能力大约等于 1000 / 3/ 1.5 = 222.2 RAI
- **稳定费率:**年化2%
- **稳定费率**:年化2%
- **清算罚金**:18-20%


Expand Down
Loading