IRewardGnoToken
Author: StakeWise
Defines the interface for the RewardGnoToken contract
Copied from https://github.com/stakewise/contracts/blob/gnosis-chain/contracts/interfaces/IRewardToken.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
Name | Type | Description |
---|---|---|
rewardsDelta | int256 | - the total rewards earned or penalties received. |