Getters of TokensFarm Contract
Get info from relevant contract public fields
The staked ERC-20 token's address
IERC20 public tokenStaked;Total amount of tokens deposited to a farm
uint256 public totalDeposits;Total amount of tokens that were paid out as rewards
uint256 public paidOut;The current total rewards amount
uint256 public totalRewards;The amount of tokens rewarded per second
uint256 public rewardPerSecond;The farm's start and end times
uint256 public startTime;
uint256 public endTime;The early withdrawal penalty
The fee rates in percentages %
The number of farm participants
The addresses of all farm participants and mapping of users to get the index
mapping of users to get the indexGetters
Get the Address of a Staked Token
Get the Amount of Deposited ERC-20 Tokens via stakeId
stakeIdParameters
Type
Description
Parameters
Type
Description
Get pending reward amount
Parameters
Type
Description
Parameters
Type
Description
How many time a user staked
Parameters
Type
Description
Parameters
Type
Description
Get deposit timestamp
Parameters
Type
Description
Parameters
Type
Description
Get withdraw timestamp
Parameters
Type
Description
Parameters
Type
Description
Last updated