INFTStake
Thirdweb's NFTStake smart contract allows users to stake their ERC-721 NFTs and earn rewards in form of an ERC-20 token. note: - Reward token and staking token can't be changed after deployment. - ERC721 tokens from only the specified contract can be staked. - All token/NFT transfers require approval on their respective 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 NFTs using the stake
function only. Any direct transfers may cause unintended consequences, such as locking of NFTs.
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