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

feat: add management fee function to vault #5

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

0xethsign
Copy link
Contributor

adds a feature to tax an annualised management fee.

Copy link
Collaborator

@0xtomoon 0xtomoon left a 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%");
Copy link
Collaborator

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");
Copy link
Collaborator

Choose a reason for hiding this comment

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

Same here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

makes sense

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants