Skip to content

Commit

Permalink
Resolve: proposals must be referenced with the form ERC-N
Browse files Browse the repository at this point in the history
  • Loading branch information
socathie committed Feb 29, 2024
1 parent 083528c commit 248b2d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ERCS/erc-7641.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:

Expand Down

0 comments on commit 248b2d1

Please sign in to comment.