-
Notifications
You must be signed in to change notification settings - Fork 18
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
Adds tracking of overall authorized amount for each application #166
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: David Núñez <[email protected]> Co-authored-by: Michalina <[email protected]>
…m governance contracts Co-authored-by: Michalina <[email protected]>
Co-authored-by: Michalina <[email protected]>
]; | ||
int96 authorizedOverall = authorizedOverallValues[i]; | ||
if (authorizedOverall >= 0) { | ||
applicationStruct.authorizedOverall += uint96( |
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.
Why not directly setting applicationStruct.authorizedOverall
, rather than using int96
increments/decrements?
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.
because with just setting value we always can face frontrun tx that will change authorization and now we have to execute one more tx. With addition or subtraction - maximum we need two txs even if one/many will be executed right before upgrade
Based on #159
At some moment in the future we want to have contract that will calculate reward per app on chain. For this purpose such contract will need to know overall amount authorized for each application. This PR adds tracking of those values and also one-time function to initialize variables. It's not feasible to calculate current authorized value in contract because we don't have list of all staking providers on chain.
updateAuthorizedOverall
allows to add or subtract values from currentauthorizedOverall
, it needed in case before upgrading will be any change in authorization amount. Suggested upgrading sequence: calculate authorized amounts right before upgrading, upgrade +updateAuthorizedOverall
, in case there is any tx that changes authorization between two previous steps - executeupdateAuthorizedOverall
again.