-
Notifications
You must be signed in to change notification settings - Fork 213
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: self-impose locks on StakingVault #979
Conversation
14cb780
to
0a51796
Compare
function lock(uint256 _locked) external { | ||
if (msg.sender != address(VAULT_HUB)) revert NotAuthorized("lock", msg.sender); | ||
|
||
function lock(uint256 _locked) external onlyOwner { |
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.
In this configuration, it's possible to enforce _locked <= valuation, but it means that we should prefund 1 ETH in vault factory for deposit, which is fine tbh.
bda4fe4
to
57d4943
Compare
…o selfimposed-lock
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.
LGTM yet some changes to be made 👀
Can merge once resolved 🙏
Hardhat Unit Tests Coverage Summary
Diff against master
Results for commit: d6587f9 Minimum allowed coverage is ♻️ This comment has been updated with latest results |
Shifts the responsibility of locking amount on the vault from VaultHub to the vault owner (outside of reports).
Problem
Prevents the VaultHub from locking arbitrary amount on the vault
Solution
Locked amount is controlled by the owner. Now minting only checks (instead of locking) that there is a sufficient locked amount on the vault.
TODO: VaultHub can still lock an arbitrary amount in report. Think about sanity checks (max lock increase during report)