-
Notifications
You must be signed in to change notification settings - Fork 0
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: add management fee function to vault #5
base: master
Are you sure you want to change the base?
Conversation
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.
Thanks for the PR! Left few comments
@@ -53,6 +105,17 @@ contract Vault is ERC4626Fees, Ownable { | |||
emit SetDepositFee(fee_); | |||
} | |||
|
|||
function setManagementFeeInBps(uint256 fee_) public onlyOwner { | |||
require(fee_ <= 500, "Management fee exceeds 5%"); |
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 don't you use error revert here?
if (fee_ > 500) revert Staking__ProtocolFeeCannotExceed500Bps();
} | ||
|
||
function setManagementFeeRecipient(address recipient_) public onlyOwner { | ||
require(recipient_ != address(0), "Recipient cannot be zero address"); |
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.
Same here.
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.
makes sense
adds a feature to tax an annualised management fee.