IVaultFee
Inherits: IVaultAdmin
Author: StakeWise
Defines the interface for the VaultFee contract
Functions
feeRecipient
The Vault's fee recipient
function feeRecipient() external view returns (address);
Returns
Name | Type | Description |
---|---|---|
<none> | address | The address of the Vault's fee recipient |
feePercent
The Vault's fee percent in BPS
function feePercent() external view returns (uint16);
Returns
Name | Type | Description |
---|---|---|
<none> | uint16 | The fee percent applied by the Vault on the rewards |
setFeeRecipient
Function for updating the fee recipient address. Can only be called by the admin.
function setFeeRecipient(address _feeRecipient) external;
Parameters
Name | Type | Description |
---|---|---|
_feeRecipient | address | The address of the new fee recipient |
setFeePercent
Function for updating the fee percent. Can only be called by the admin.
function setFeePercent(uint16 _feePercent) external;
Parameters
Name | Type | Description |
---|---|---|
_feePercent | uint16 | The new fee percent |
Events
FeeRecipientUpdated
Event emitted on fee recipient update
event FeeRecipientUpdated(address indexed caller, address indexed feeRecipient);
Parameters
Name | Type | Description |
---|---|---|
caller | address | The address of the function caller |
feeRecipient | address | The address of the new fee recipient |
FeePercentUpdated
Event emitted on fee percent update
event FeePercentUpdated(address indexed caller, uint16 feePercent);
Parameters
Name | Type | Description |
---|---|---|
caller | address | The address of the function caller |
feePercent | uint16 | The new fee percent |