EthRewardSplitter
Inherits: ReentrancyGuardUpgradeable, RewardSplitter
Author: StakeWise
The EthRewardSplitter can be used on Ethereum networks to split the rewards of the fee recipient of the vault based on configured shares
Functions
constructor
Constructor for EthRewardSplitter
constructor() RewardSplitter();
receive
Allows to claim rewards from the vault and receive them to the reward splitter address
receive() external payable;
initialize
Initializes the RewardSplitter contract
function initialize(address _vault) external override initializer;
Parameters
Name | Type | Description |
---|---|---|
_vault | address | The address of the vault to which the RewardSplitter will be connected |
_transferRewards
Transfers the specified amount of rewards to the shareholder
function _transferRewards(address shareholder, uint256 amount) internal override nonReentrant;
Parameters
Name | Type | Description |
---|---|---|
shareholder | address | The address of the shareholder |
amount | uint256 | The amount of rewards to transfer |