Skip to main content

IRewardEthToken

Git Source

Author: StakeWise

Defines the interface for the RewardEthToken contract

Copied from https://github.com/stakewise/contracts/blob/master/contracts/interfaces/IRewardEthToken.sol

Functions

totalAssets

Function for getting the total assets.

function totalAssets() external view returns (uint256);

totalRewards

Function for retrieving the total rewards amount.

function totalRewards() external view returns (uint128);

totalPenalty

Function for getting the total penalty.

function totalPenalty() external view returns (uint256);

updateTotalRewards

Function for updating validators total rewards. Can only be called by Vault contract.

function updateTotalRewards(int256 rewardsDelta) external;

Parameters

NameTypeDescription
rewardsDeltaint256- the total rewards earned or penalties received.