ITokenStake
Thirdweb's TokenStake smart contract allows users to stake their ERC-20 Tokens and earn rewards in form of a different ERC-20 token. note: - Reward token and staking token can't be changed after deployment. Reward token contract can't be same as the staking token contract. - ERC20 tokens from only the specified contract can be staked. - All token transfers require approval on their respective token-contracts. - Admin must deposit reward tokens using the depositRewardTokens
function only. Any direct transfers may cause unintended consequences, such as locking of tokens. - Users must stake tokens using the stake
function only. Any direct transfers may cause unintended consequences, such as locking of tokens.
Methods
depositRewardTokens
Lets a contract admin (account with DEFAULT_ADMIN_ROLE
) deposit reward-tokens. note: Tokens should be approved on the reward-token contract before depositing.
Parameters
_amount
uint256
Amount of tokens to deposit.
withdrawRewardTokens
Lets a contract admin (account with DEFAULT_ADMIN_ROLE
) withdraw reward-tokens. Useful for removing excess balance, thus preventing locking of tokens.
Parameters
_amount
uint256
Amount of tokens to deposit.
Events
RewardTokensDepositedByAdmin
Emitted when contract admin deposits reward tokens.
Parameters
_amount
uint256
undefined
RewardTokensWithdrawnByAdmin
Emitted when contract admin withdraws reward tokens.
Parameters
_amount
uint256
undefined
Last updated