-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
ERC2917: Staking Reward Calculation #2917
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Formatting/layout/sections should match https://raw.githubusercontent.com/ethereum/EIPs/master/eip-template.md.
Also, this doesn't seem like something that needs to be standardized. Each contract can do whatever they want for interest yields/staking, they don't have to all share a public surface area.
EIPS/eip-3000.md
Outdated
category: ERC | ||
status: Draft | ||
created: 2020-08-28 | ||
discussions-to: https://github.com/ethereum/EIPs/issues/3000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the header in the order in the template for consistency purposes.
https://raw.githubusercontent.com/ethereum/EIPs/master/eip-template.md
EIPS/eip-3000.md
Outdated
--- | ||
## Simple Summary | ||
ERC3000 is a new standardization for on-chain calculation of staking reward. | ||
## Abstract |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Abstract | |
## Abstract |
EIPS/eip-3000.md
Outdated
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete one of these newlines.
EIPS/eip-3000.md
Outdated
One of the main drawbacks of many DeFi projects is the reward distribution mechanism within the smart contract. In fact, there are two main mechanisms are adopted so far. | ||
1. Distribution of rewards is only given when all users exit the contract | ||
2. The project collects on-chain data, conducts calculation off-chain, and sends the results | ||
to the chain before starting rewards distribution accordingly | ||
|
||
The first approach conducts all calculation in an on-chain fashion, the cycle of its rewards distribution is too long. Furthermore, users need to remove their collateral before getting the rewards, which can be harmful for their rewards. The second approach is a semi-decentralized model since the main algorithm involves an off-chain computation. Therefore, the fairness and transparency properties cannot be reflected and this can even create the investment barrier for users. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to see an addition to the motivation section that explains why this needs to be standardized. Keep in mind, not all good ideas need to be standards, many good ideas can just be good ideas.
EIPS/eip-3000.md
Outdated
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove extraneous whitespace.
EIPS/eip-3000.md
Outdated
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extraneous whitespace. (you may want to look into fixing your enter key 😉)
EIPS/eip-3000.md
Outdated
|
||
### mint | ||
it mints the amount of interests will transfer to callee's address. It returns the amount of interests minted. | ||
### Implementation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
### Implementation | |
## Rationale | |
TBD | |
## Implementations |
EIPS/eip-3000.md
Outdated
|
||
- [ERC3000 Demo](https://github.com/gnufoo/ERC3000-Proposal) | ||
|
||
## Copyright |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Copyright | |
## Security Considerations | |
TBD | |
## Copyright |
-Updated according to rules -Removed extra white spaces -Added some extra sections -Add some motivation to be standardized @MicahZoltu
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The spelling errors need to be fixed before the bot will let this through, but otherwise it seems properly formatted. I recommend finding a different name for it besides ERC3000 since that will be highly confusing to users as this EIP won't end up with the number 3000 and vanity numbers have historically not been allowed.
EIPS/eip-2917.md
Outdated
--- | ||
|
||
## Simple Summary | ||
ERC3000 is a new standardization for on-chain calculation of staking reward. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ERC3000
it will be confusing to readers if this isn't the actual EIP number. People have tried to snag vanity EIP numbers in the past and we have disallowed it because it leads to an arms race that just clogs up the EIP process. My recommendation is to come up with a snazzy title rather than trying to get a vanity number.
Same comment for the other references to ERC3000
.
EIPS/eip-2917.md
Outdated
|
||
/// @notice Change the current contract's interests rate. | ||
/// @dev Note the best practice will be restrict the gross product provider's contract address to call this. | ||
/// @return The true/fase to notice that the value has successfully changed or not, when it succeed, it will emite the InterestRatePerBlockChanged event. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// @return The true/fase to notice that the value has successfully changed or not, when it succeed, it will emite the InterestRatePerBlockChanged event. | |
/// @return The true/false to notice that the value has successfully changed or not, when it succeed, it will emite the InterestRatePerBlockChanged event. |
EIPS/eip-2917.md
Outdated
/// @return amount of interests and the block height. | ||
function takeWithBlock() external view returns (uint, uint); | ||
|
||
/// @notice mint the avaiable interests to callee. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// @notice mint the avaiable interests to callee. | |
/// @notice mint the available interests to callee. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, missed the discussion-to link just pointing at this EIP.
@lightclient How hard would it be to have the checker detect this? There are a couple forms of the link, but seems like it shouldn't be too hard?
EIPS/eip-2917.md
Outdated
eip: 2917 | ||
title: Staking Reward Calculation | ||
author: Tony Carson <tony.carsonn@gmail.com>, Mehmet Sabir Kiraz <m.kiraz@gmail.com>, Süleyman Kardaş <skardas@gmail.com> | ||
discussions-to: https://github.com/ethereum/EIPs/issues/2917 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussion-to cannot link to the original PR itself. You can create a GitHub issue for discussion, or you can create a thread on Ethereum Magicians or somewhere else.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Back to approved pending automated checks passing (spelling). Keep in mind this won't likely be eligible for last call until the ERC3000 terminology is removed or changed to ERC2917.
It's actually already implemented, but it's turned off. Many early EIPs don't have discussion-to fields and so I was trying to decide the best way to handle them. |
I'd suggest two rules:
Then slowly we can bug those which don't have it, or enforce it on any change to an EIP not having it (i.e. any modification to the draft would not be auto-merged until this field is added). Or a bot could complain irrespective to eipv. This can be done incrementally. |
Good idea, thanks @axic. |
ERC2917 is a new standardization for on-chain calculation of staking reward.
ERC2917 is a new standardization for on-chain calculation of staking reward.
ERC2917: Staking Reward Calculation