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

feat: implement claimKghReward function #348

Merged

Conversation

sm-stack
Copy link
Contributor

Description

Implement claimKghReward function. Includes _claimBoostedReward which has isCompounding flag.

@sm-stack sm-stack requested a review from a team as a code owner July 18, 2024 07:51
Copy link
Contributor

coderabbitai bot commented Jul 18, 2024

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Base branches to auto review (2)
  • dev
  • main

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@sm-stack sm-stack requested review from 0xHansLee and seolaoh and removed request for a team July 18, 2024 07:51
@sm-stack sm-stack self-assigned this Jul 18, 2024
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
@sm-stack sm-stack force-pushed the feat/implement-claim-kgh-reward branch 2 times, most recently from 7520f30 to edd6653 Compare July 19, 2024 04:14
Comment on lines 1244 to 1246
if (isCompounding) {
_delegate(validator, delegator, totalBoostedReward);
}
Copy link
Contributor

Choose a reason for hiding this comment

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

It seems that this can be handled when calling _claimBoostedReward() since totalBoostedReward is returned.
If compounding is needed, caller can delegate the totalBoostedReward to validator. wdyt?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I didn't get what you mean. Could you elaborate it?

Copy link
Contributor

Choose a reason for hiding this comment

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

Ok. I suggest to remove isCompounding flag and just return totalBoostedReward in this function.
Then, caller can choose to delegate the totalBoostedReward or not.

At first, I thought the compounding delegation should be executed in this function, but it seems to be out of this function.

For example, in claimKghReward, just transfer the totalBoostedReward to the delegator. On the other hand, in delegateKgh (would be handled in #349), make delegate with the totalBoostedReward. Then we don't need the isCompounding flang here.

Copy link
Contributor

Choose a reason for hiding this comment

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

I agree it. Just return totalBoostedReward and handle auto compounding out of this function.

Additionally, I suggest to add internal view functions to calculate boosted reward and base reward of KGH delegator each, and use the two functions in getKghReward and claimKghReward. wdyt?
Then kghDelegator.rewardPerKghPaid = rewardPerKghStored; this part should be handled in claimKghReward and delegateKgh.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

So you mean that the compounding process will be executed separately in delegateKgh? Make sense, I'll remove it!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Additionally, I suggest to add internal view functions to calculate boosted reward and base reward of KGH delegator each, and use the two functions in getKghReward and claimKghReward. wdyt?
Then kghDelegator.rewardPerKghPaid = rewardPerKghStored; this part should be handled in claimKghReward and delegateKgh.

I've also thought about this, but in terms of base reward, making an internal function is not desirable in terms of gas usage, since we have to check delegateAt inside the for loop in claimKghReward. Also for the boosted reward, _claimBoostedReward is also used in delegateKgh, which means an internal function to calculate the reward makes kghDelegator.rewardPerKghPaid = rewardPerKghStored; line repeated inside delegateKgh function, and I didn't see much differences in code readability imo. What do you think?

Copy link
Contributor

Choose a reason for hiding this comment

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

OK, it's not that critical thing and I just suggested it to reduce code redundancy between the getKghReward function and claimKghReward function.

@sm-stack sm-stack force-pushed the feat/implement-claim-kgh-reward branch from edd6653 to 86b9eaf Compare July 19, 2024 05:10
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
Comment on lines 1244 to 1246
if (isCompounding) {
_delegate(validator, delegator, totalBoostedReward);
}
Copy link
Contributor

Choose a reason for hiding this comment

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

I agree it. Just return totalBoostedReward and handle auto compounding out of this function.

Additionally, I suggest to add internal view functions to calculate boosted reward and base reward of KGH delegator each, and use the two functions in getKghReward and claimKghReward. wdyt?
Then kghDelegator.rewardPerKghPaid = rewardPerKghStored; this part should be handled in claimKghReward and delegateKgh.

packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
@sm-stack sm-stack force-pushed the feat/implement-claim-kgh-reward branch 3 times, most recently from a90762a to 757bddf Compare July 19, 2024 05:57
packages/contracts/contracts/L1/AssetManager.sol Outdated Show resolved Hide resolved
Comment on lines 1286 to 1288
* @param validator Address of the validator.
* @param delegator Address of the delegator.
* @param isCompounding Flag to auto compound the boosted reward.
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
* @param validator Address of the validator.
* @param delegator Address of the delegator.
* @param isCompounding Flag to auto compound the boosted reward.
* @param validator Address of the validator.
* @param delegator Address of the delegator.

@sm-stack sm-stack force-pushed the feat/implement-claim-kgh-reward branch from 757bddf to b12cae3 Compare July 19, 2024 06:22
@sm-stack sm-stack requested a review from seolaoh July 19, 2024 06:22
Comment on lines 1286 to 1287
* @param validator Address of the validator.
* @param delegator Address of the delegator.
Copy link
Contributor

Choose a reason for hiding this comment

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

Can you remove the spaces?

Suggested change
* @param validator Address of the validator.
* @param delegator Address of the delegator.
* @param validator Address of the validator.
* @param delegator Address of the delegator.

@sm-stack sm-stack force-pushed the feat/implement-claim-kgh-reward branch from b12cae3 to 103171a Compare July 19, 2024 06:32
@sm-stack sm-stack merged commit 6e0ec89 into feat/implement-validator-system-v2 Jul 19, 2024
1 of 2 checks passed
@sm-stack sm-stack deleted the feat/implement-claim-kgh-reward branch July 19, 2024 06:33
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.

3 participants