From 248b2d1089be02d5e040b3d368d26a9cc32d444f Mon Sep 17 00:00:00 2001 From: "drCathieSo.eth" Date: Thu, 29 Feb 2024 00:47:55 -0700 Subject: [PATCH] Resolve: proposals must be referenced with the form `ERC-N` --- ERCS/erc-7641.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ERCS/erc-7641.md b/ERCS/erc-7641.md index 4a4f80cee1b..610555e6ae7 100644 --- a/ERCS/erc-7641.md +++ b/ERCS/erc-7641.md @@ -136,7 +136,7 @@ We specify a `snapshot` interface to snapshot the token balance and the claimabl ### `claimableRevenue` interface -We specify a `claimableRevenue` interface to calculate the amount of ETH claimable by a token holder at a certain snapshot. We will share the revenue between two consecutive snapshots. Specifically, assuming that the revenue between two snapshots is `R`, we will specify a revenue sharing ratio `p`, ranging from 0%-100%, and we will share the revenue of `pR` to different token holders according to the token ratio. Specifically, the amount of ETH claimable by a token holder with `amount` tokens at a certain snapshot is `pR * amount / totalAmount` , where `totalAmount` denotes the total amount of ERC7641 token. Noted that the remaining revenue of `(1-p)R` will be retained in the revenue pool, and we can take out this part of revenue through burning. +We specify a `claimableRevenue` interface to calculate the amount of ETH claimable by a token holder at a certain snapshot. We will share the revenue between two consecutive snapshots. Specifically, assuming that the revenue between two snapshots is `R`, we will specify a revenue sharing ratio `p`, ranging from 0%-100%, and we will share the revenue of `pR` to different token holders according to the token ratio. Specifically, the amount of ETH claimable by a token holder with `amount` tokens at a certain snapshot is `pR * amount / totalAmount` , where `totalAmount` denotes the total amount of [ERC-7641](./eip-7641.md) token. Noted that the remaining revenue of `(1-p)R` will be retained in the revenue pool, and we can take out this part of revenue through burning. ### `claim` interface @@ -154,7 +154,7 @@ We specify `redeemableOnBurn` interface to calculate the amount of ETH redeemabl redeemableETH = amount / totalSupply * totalRedeemableETH ``` -where `totalSupply` denotes the total supply of ERC7641 token, and `totalRedeemableETH` denotes the total amount of ETH in the burning pool. +where `totalSupply` denotes the total supply of [ERC-7641](./eip-7641.md) token, and `totalRedeemableETH` denotes the total amount of ETH in the burning pool. ### `burn` interface: