-
Notifications
You must be signed in to change notification settings - Fork 32
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: account for aura and beefy stakes #1786
base: main
Are you sure you want to change the base?
Conversation
FILENAME:
|
FILENAME:
|
… reports) + reformat JSON
… reports) + reformat JSON
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.
- need complete boosted pool list
- address issue with link between boosted pool effective earned secondary rewards and airdrop watchlist config
@@ -4,7 +4,7 @@ | |||
"pools": { | |||
"csUSDC-csUSDT": { |
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.
How can we make the link between how much our vault earned for each specific pool?
For the total of claimable amounts, we need to potentially run agains this complete list to correctly distribute to all depositors (as of Feb 21st):
Mainnet:
csUDSC-csUSDT: 0x10a04efba5b880e169920fd4348527c64fb29d4d - created Jan 14th
pxETH-gtWETHe: 0x5512fddc40842b257e2a7742be3dadcf31574d53 - created Jan 16th
steakUSDTlite-steakUSDR-steakUSDQ: 0xf028ac624074d6793c36dc8a06ecec0f5a39a718 - created Feb 1st
pufETH-gtWETHe: 0xe8769d62a5ab42f1cbdfa7002e64e4f5896fc6af - created Jan 17th
slpETH-gtWETHe: 0x2b261c98a81cfda61bee7bfcf941a3d336be7957 - created Feb 11th
Base (dust amounts):
sUSDS-smUSDC: 0x4147d8aeecb75bc9f5c973c3b73d2dfc4dcce131 - created Jan 31st
@@ -4,7 +4,7 @@ | |||
"pools": { | |||
"csUSDC-csUSDT": { | |||
"address": "0x10A04efbA5B880e169920Fd4348527C64FB29d4D", | |||
"reward_wei": "1410348263937287967617" | |||
"reward_wei": "2054627491416394882043" |
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.
How is this amount derived? If I look at the distributions data, I can't see how to derive it for a specific pool, it's simply the totals?
What we need is to know how much rewards our vault earned in total for that specific pool, as there is a set of boosted pools.
Bigger issue I see now is that we have a set of boosted pools using the same underlying vault (e.g. gtWETHe). For Morpho that is one deposit, for us that is a set of x boosted pools. The correct link here is missing so far. How can we retrieve that data?
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.
this is the total rewards claimable from the morpho tree. they cannot provide a breakdown on a pool by pool basis. we will have to cook something up ourselves
… reports) + reformat JSON
closes #1731