Rewards
//sample convex reward contracts interface
interface IConvexRewards{
//get balance of an address
function balanceOf(address _account) external returns(uint256);
//withdraw to a convex tokenized deposit
function withdraw(uint256 _amount, bool _claim) external returns(bool);
//withdraw directly to curve LP token
function withdrawAndUnwrap(uint256 _amount, bool _claim) external returns(bool);
//claim rewards
function getReward() external returns(bool);
//stake a convex tokenized deposit
function stake(uint256 _amount) external returns(bool);
//stake a convex tokenized deposit for another address(transfering ownership)
function stakeFor(address _account,uint256 _amount) external returns(bool);
}Token Type of Reward
Balance of an Account
Total Staked Amount
Current Earned Rewards
Claim Rewards
Stake/Deposit Tokens
Unstake/Withdraw Tokens
Extra Rewards
Other Information
Last updated