Skip to main content

IRewardGnoToken

Git Source

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

NameTypeDescription
rewardsDeltaint256- the total rewards earned or penalties received.