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

Added integration test for auto-compounding. #4491

Merged
merged 3 commits into from
Mar 26, 2025

Conversation

murisi
Copy link
Collaborator

@murisi murisi commented Mar 21, 2025

Describe your changes

Added an integration test to check that the automatic compounding of a shielded account balance is the same as manually compounding a shielded account balance. Here, manual compounding refers to a shielded pool user immediately unshielding shielded rewards they receive (thereby applying/realizing rewards at that point in time) and then reshielding them (with the timestamp of the current MASP epoch). Though this means that different allowed conversions (from the protocol) are now applied onto the automatically and manually compounded accounts, the results of shielded balance queries are expected to be the approximately the same for all MASP epochs.

See the results of compounding a principal amount of 0.1 BTC below:

Ep. Auto Compounding Manual Compounding Claimable MASP Balance
0 0.1 BTC 0.1 BTC 0.2 BTC
1 0.1 BTC + 0.0317 NAM 0.1 BTC + 0.0317 NAM 0.2 BTC + 0.0634 NAM 0.2 BTC + 0.0634 NAM
2 0.1 BTC + 0.09534 NAM 0.1 BTC + 0.09533 NAM 0.2 BTC + 0.19067 NAM 0.2 BTC + 0.190688 NAM
3 0.1 BTC + 0.191008 NAM 0.1 BTC + 0.190982 NAM 0.2 BTC + 0.38199 NAM 0.2 BTC + 0.382016 NAM
4 0.1 BTC + 0.31854 NAM 0.1 BTC + 0.31851 NAM 0.2 BTC + 0.63705 NAM 0.2 BTC + 0.637092 NAM

Note that auto-compounding gives slightly higher balances than manual compounding. This is probably because NAM conversions to the latest epoch have ever higher thresholds which means that the dust that doesn't get converted will also get higher. Also note that the MASP balance is slightly higher than the claimable amount, which is the sum of the shielded balances held by all the shielded key holders. This is due to rounding errors in the deflation process as explained in #4372 . The growth of the gap between what is claimable and the MASP balance will depend on the inflation rate of NAM, and the relative precisions of NAM and the token being rewarded.

Checklist before merging

  • If this PR has some consensus breaking changes, I added the corresponding breaking:: labels
    • This will require 2 reviewers to approve the changes
  • If this PR requires changes to the docs or specs, a corresponding PR is opened in the namada-docs repo
    • Relevant PR if applies:
  • If this PR affects services such as namada-indexer or namada-masp-indexer, a corresponding PR is opened in that repo
    • Relevant PR if applies:

@github-actions github-actions bot added the backport-libs-0.48 Backport to libraries 0.48 maintenance branch label Mar 21, 2025
Copy link

codecov bot commented Mar 21, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 0.00%. Comparing base (5a03873) to head (77d5df2).
Report is 38 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #4491       +/-   ##
==========================================
- Coverage   74.59%       0   -74.60%     
==========================================
  Files         339       0      -339     
  Lines      111402       0   -111402     
==========================================
- Hits        83096       0    -83096     
+ Misses      28306       0    -28306     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@murisi murisi force-pushed the murisi/test-auto-compounding branch from bb614e8 to 649b176 Compare March 21, 2025 13:57
assert!(captured.result.is_ok());
assert!(
captured.contains(
"Estimated native token rewards for the next MASP epoch: 0"
Copy link
Collaborator

Choose a reason for hiding this comment

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

Since the original BTCs are still in the pool, shouldn't we see the extra rewards coming from the new epoch?

Copy link
Member

Choose a reason for hiding this comment

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

Since we are manually compounding for AB, I think 0 is correct(?). But for AA, which is tested above, I think you have a point.

Copy link
Collaborator

Choose a reason for hiding this comment

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

It could also be due to this #4285 (comment)

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Since the original BTCs are still in the pool, shouldn't we see the extra rewards coming from the new epoch?

Thanks for bringing this up. I've just checked, and there are actually rewards. The call to captured.contains here is misleading because the string "Estimated ... next MASP epoch: 0" is technically contained by strings of the form "Estimated ... next MASP epoch: 0.xyz...".

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Since we are manually compounding for AB, I think 0 is correct(?). But for AA, which is tested above, I think you have a point.

Once the substring issue above is fixed, it seems that the estimate is not actually zero for AA or for AB. But is this what we expect? For AA (automatic compounding), I think this is what we all expected. For AB (manual compounding) this is what I would expect given my superficial understanding of the estimates algorithm. It takes the manually shielded balance after it is exchanged to the current epoch, and essentially reapplies/duplicates the conversions from the previous epoch to the current (after relabelling them to make it look like they convert from the current epoch to the next one in the future). @batconjurer Please let me know if we should still be concerned about the expected estimates given the latest push? Thanks!

Copy link
Member

Choose a reason for hiding this comment

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

Yes, that's how it works, so there should be rewards for both cases

assert!(captured.result.is_ok());
assert!(
captured.contains(
"Estimated native token rewards for the next MASP epoch: 0"
Copy link
Member

Choose a reason for hiding this comment

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

Since we are manually compounding for AB, I think 0 is correct(?). But for AA, which is tested above, I think you have a point.

@murisi murisi force-pushed the murisi/test-auto-compounding branch from 0cfcdae to 62a0614 Compare March 24, 2025 14:38
@brentstone
Copy link
Collaborator

Should this still be merged and worked on if #4285 is closed?

@murisi murisi force-pushed the murisi/test-auto-compounding branch from 5bcb7b4 to bbb4a17 Compare March 25, 2025 07:58
@murisi murisi force-pushed the murisi/test-auto-compounding branch from bbb4a17 to 77d5df2 Compare March 25, 2025 08:03
@murisi murisi requested review from grarco and batconjurer March 25, 2025 08:33
@murisi
Copy link
Collaborator Author

murisi commented Mar 25, 2025

Should this still be worked on if #4285 is closed?

I have attempted to address all the review comments, and am awaiting feedback. So the work here might already be complete.

Should this still be merged if #4285 is closed?

I think there is value on merging this PR. Probably this PR does three things: 1) it verifies the invariant that manual compounding is equivalent to automatic compounding is satisfied, 2) it documents the existence of such an invariant on the shielded reward system (on the level of the namadac client), 3) it prevents future regressions with respect to this invariant. The only drawback of this PR I can think of is that it adds around 40 seconds (on my machine) to the time it takes to execute the integration tests. But, ultimately, merging this PR is optional in the sense that it has already served its purpose of allowing us to choose between manual and automatic compounding.

... if #4285 is closed?

This PR is only applicable when #4285 is closed. This is because this PR checks that automatic compounding is equivalent to manual compounding while #4285 which removes automatic compounding. Concretely, if #4285 and #4491 were to be combined, the integration test in this PR would fail due to the unmet expectation that shielded balances automatically increase on each epoch.

@murisi murisi added MASP testing merge Ready to merge - mergifyio bot will add the PR to merge queue when all checks pass labels Mar 25, 2025
mergify bot added a commit that referenced this pull request Mar 25, 2025
Copy link
Contributor

mergify bot commented Mar 26, 2025

This pull request has been removed from the queue for the following reason: checks failed.

The merge conditions cannot be satisfied due to failing checks:

You may have to fix your CI before adding the pull request to the queue again.

If you want to requeue this pull request, you can post a @mergifyio requeue comment.

Copy link
Contributor

mergify bot commented Mar 26, 2025

Hey @murisi, your pull request has been dequeued due to the following reason: CHECKS_FAILED.
Sorry about that, but you can requeue the PR by using @mergifyio requeue if you think this was a mistake.

@tzemanovic
Copy link
Member

@Mergifyio requeue

Copy link
Contributor

mergify bot commented Mar 26, 2025

requeue

✅ The queue state of this pull request has been cleaned. It can be re-embarked automatically

mergify bot added a commit that referenced this pull request Mar 26, 2025
mergify bot added a commit that referenced this pull request Mar 26, 2025
@mergify mergify bot merged commit ea4cf05 into main Mar 26, 2025
25 of 28 checks passed
@mergify mergify bot deleted the murisi/test-auto-compounding branch March 26, 2025 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-libs-0.48 Backport to libraries 0.48 maintenance branch MASP merge Ready to merge - mergifyio bot will add the PR to merge queue when all checks pass testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants