StakingRewardsV2

A contract that enables users to stake tokens and earn rewards based on the staked amounts and durations.

Functions

stake

function stake(uint256 _amount) external

Allows users to stake a specified amount of tokens.

withdraw

function withdraw(uint256 _amount) external

Allows users to withdraw a specified amount of staked tokens.

getBoost

function getBoost(address _account) public view returns (uint256)

Returns the boost factor for a given user's address.

earned

function earned(address _account) public view returns (uint256)

Calculates and returns the earned rewards for a user.

getReward

function getReward() external

Allows users to claim their earned rewards.

Last updated