Skip to main content

IRewardSplitter

Git Source

Inherits: IMulticall

Author: StakeWise

Defines the interface for the RewardSplitter contract

Functions

vault

The vault to which the RewardSplitter is connected

function vault() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the vault

totalShares

The total number of shares in the splitter

function totalShares() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The total number of shares

exitPositions

Returns the address of shareholder on behalf of which the rewards are claimed

function exitPositions(uint256 exitPosition) external view returns (address onBehalf);

Parameters

NameTypeDescription
exitPositionuint256The position in the exit queue

Returns

NameTypeDescription
onBehalfaddressThe address of shareholder

isClaimOnBehalfEnabled

Returns whether the claim on behalf is enabled

function isClaimOnBehalfEnabled() external view returns (bool);

Returns

NameTypeDescription
<none>booltrue if the claim on behalf is enabled, false otherwise

totalRewards

The total amount of unclaimed rewards in the splitter

function totalRewards() external view returns (uint128);

Returns

NameTypeDescription
<none>uint128The total amount of rewards

initialize

Initializes the RewardSplitter contract

function initialize(address _vault) external;

Parameters

NameTypeDescription
_vaultaddressThe address of the vault to which the RewardSplitter will be connected

setClaimOnBehalf

Sets the flag indicating whether the claim on behalf is enabled.

function setClaimOnBehalf(bool enabled) external;

Parameters

NameTypeDescription
enabledboolThe flag indicating whether the claim on behalf is enabled Can only be called by the vault admin.

sharesOf

Retrieves the amount of splitter shares for the given account. The shares are used to calculate the amount of rewards the account is entitled to.

function sharesOf(address account) external view returns (uint256);

Parameters

NameTypeDescription
accountaddressThe address of the account to get shares for

rewardsOf

Retrieves the amount of rewards the account is entitled to. The rewards are calculated based on the amount of shares the account has. Note, rewards must be synced using the syncRewards function.

function rewardsOf(address account) external view returns (uint256);

Parameters

NameTypeDescription
accountaddressThe address of the account to get rewards for

canSyncRewards

Checks whether new rewards can be synced from the vault.

function canSyncRewards() external view returns (bool);

Returns

NameTypeDescription
<none>boolTrue if new rewards can be synced, false otherwise

increaseShares

Increases the amount of shares for the given account. Can only be called by the owner.

function increaseShares(address account, uint128 amount) external;

Parameters

NameTypeDescription
accountaddressThe address of the account to increase shares for
amountuint128The amount of shares to add

decreaseShares

Decreases the amount of shares for the given account. Can only be called by the owner.

function decreaseShares(address account, uint128 amount) external;

Parameters

NameTypeDescription
accountaddressThe address of the account to decrease shares for
amountuint128The amount of shares to deduct

updateVaultState

Updates the vault state. Can be used in multicall to update state, sync rewards and withdraw them.

function updateVaultState(IKeeperRewards.HarvestParams calldata harvestParams) external;

Parameters

NameTypeDescription
harvestParamsIKeeperRewards.HarvestParamsThe harvest params to use for updating the vault state

claimVaultTokens

Transfers the vault tokens to the given account. Can only be called for the vault with ERC-20 token.

function claimVaultTokens(uint256 rewards, address receiver) external;

Parameters

NameTypeDescription
rewardsuint256The amount of vault tokens to transfer
receiveraddressThe address of the account to transfer tokens to

enterExitQueue

Sends the rewards to the exit queue

function enterExitQueue(uint256 rewards, address receiver) external returns (uint256 positionTicket);

Parameters

NameTypeDescription
rewardsuint256The amount of rewards to send to the exit queue
receiveraddressThe address that will claim exited assets

Returns

NameTypeDescription
positionTicketuint256The position ticket of the exit queue

enterExitQueueOnBehalf

Enters the exit queue on behalf of the shareholder. Can only be called if claim on behalf is enabled.

function enterExitQueueOnBehalf(uint256 rewards, address onBehalf) external returns (uint256 positionTicket);

Parameters

NameTypeDescription
rewardsuint256The amount of rewards to send to the exit queue
onBehalfaddressThe address of the account on behalf of which the rewards are sent to the exit queue

Returns

NameTypeDescription
positionTicketuint256The position ticket of the exit queue

claimExitedAssetsOnBehalf

Claims the exited assets from the vault.

function claimExitedAssetsOnBehalf(uint256 positionTicket, uint256 timestamp, uint256 exitQueueIndex) external;

Parameters

NameTypeDescription
positionTicketuint256The position ticket in the exit queue
timestampuint256The timestamp when the shares entered the exit queue
exitQueueIndexuint256The exit queue index of the exit request

syncRewards

Syncs the rewards from the vault to the splitter. The vault state must be up-to-date.

function syncRewards() external;

Events

ClaimOnBehalfUpdated

Event emitted when the claim on behalf flag is updated

event ClaimOnBehalfUpdated(address caller, bool enabled);

Parameters

NameTypeDescription
calleraddressThe address of the account that called the function
enabledboolThe flag indicating whether the claim on behalf is enabled

SharesIncreased

Event emitted when the number of shares is increased for an account

event SharesIncreased(address indexed account, uint256 amount);

Parameters

NameTypeDescription
accountaddressThe address of the account for which the shares were increased
amountuint256The amount of shares that were added

SharesDecreased

Event emitted when the number of shares is decreased for an account

event SharesDecreased(address indexed account, uint256 amount);

Parameters

NameTypeDescription
accountaddressThe address of the account for which the shares were decreased
amountuint256The amount of shares that were deducted

RewardsSynced

Event emitted when the rewards are synced from the vault.

event RewardsSynced(uint256 totalRewards, uint256 rewardPerShare);

Parameters

NameTypeDescription
totalRewardsuint256The new total amount of rewards
rewardPerShareuint256The new reward per share

RewardsWithdrawn

Event emitted when the rewards are withdrawn from the splitter

event RewardsWithdrawn(address indexed account, uint256 amount);

Parameters

NameTypeDescription
accountaddressThe address of the account for which the rewards were withdrawn
amountuint256The amount of rewards that were withdrawn

ExitQueueEnteredOnBehalf

Event emitted when the rewards are claimed on behalf

event ExitQueueEnteredOnBehalf(address indexed onBehalf, uint256 positionTicket, uint256 amount);

Parameters

NameTypeDescription
onBehalfaddressThe address of the account on behalf of which the rewards were claimed
positionTicketuint256The position ticket in the exit queue
amountuint256The amount of rewards that were claimed

ExitedAssetsClaimedOnBehalf

Event emitted when the exited assets are claimed on behalf

event ExitedAssetsClaimedOnBehalf(address indexed onBehalf, uint256 positionTicket, uint256 amount);

Parameters

NameTypeDescription
onBehalfaddressThe address of the account on behalf of which the assets were claimed
positionTicketuint256The position ticket in the exit queue
amountuint256The amount of assets that were claimed

Errors

NotHarvested

error NotHarvested();

InvalidAccount

error InvalidAccount();

InvalidAmount

error InvalidAmount();

Structs

ShareHolder

Structure for storing information about share holder

struct ShareHolder {
uint128 shares;
uint128 rewardPerShare;
}

Properties

NameTypeDescription
sharesuint128The amount of shares the account has
rewardPerShareuint128The last synced reward per share