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

ERC2917: Staking Reward Calculation #2917

Merged
merged 5 commits into from
Aug 30, 2020
Merged

Conversation

skardas
Copy link
Contributor

@skardas skardas commented Aug 28, 2020

ERC2917: Staking Reward Calculation

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@skardas skardas changed the title master ERC3000 : Staking Reward Calculation Aug 28, 2020
@skardas skardas changed the title ERC3000 : Staking Reward Calculation ERC3000: Staking Reward Calculation Aug 28, 2020
Copy link
Contributor

@MicahZoltu MicahZoltu left a 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
Copy link
Contributor

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## Abstract
## Abstract

EIPS/eip-3000.md Outdated
Comment on lines 16 to 17


Copy link
Contributor

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
Comment on lines 28 to 33
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.
Copy link
Contributor

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
Comment on lines 37 to 38


Copy link
Contributor

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
Comment on lines 53 to 54


Copy link
Contributor

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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### Implementation
## Rationale
TBD
## Implementations

EIPS/eip-3000.md Outdated

- [ERC3000 Demo](https://github.com/gnufoo/ERC3000-Proposal)

## Copyright
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## Copyright
## Security Considerations
TBD
## Copyright

-Updated according to rules
-Removed extra white spaces
-Added some extra sections
-Add some motivation to be standardized

@MicahZoltu
Copy link
Contributor

@MicahZoltu MicahZoltu left a 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.
Copy link
Contributor

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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/// @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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/// @notice mint the avaiable interests to callee.
/// @notice mint the available interests to callee.

Copy link
Contributor

@MicahZoltu MicahZoltu left a 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
Copy link
Contributor

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.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Copy link
Contributor

@MicahZoltu MicahZoltu left a 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.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@skardas skardas changed the title ERC3000: Staking Reward Calculation ERC2917: Staking Reward Calculation Aug 30, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@skardas skardas requested a review from axic August 30, 2020 08:34
@MicahZoltu MicahZoltu merged commit 42b9ea8 into ethereum:master Aug 30, 2020
@lightclient
Copy link
Member

lightclient commented Aug 30, 2020

@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?

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.

@axic
Copy link
Member

axic commented Aug 30, 2020

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:

  1. Ignore it for anything marked Final/Superseded/Abandoned.

  2. Add an explicit exclusion list for eips, i.e. a way to disable this check for a set of EIPs, and include those which are missing it currently, but are merged.

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.

@lightclient
Copy link
Member

Good idea, thanks @axic.

tkstanczak pushed a commit to tkstanczak/EIPs that referenced this pull request Nov 7, 2020
ERC2917 is a new standardization for on-chain calculation of staking reward.
Arachnid pushed a commit to Arachnid/EIPs that referenced this pull request Mar 6, 2021
ERC2917 is a new standardization for on-chain calculation of staking reward.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants