MaverickV2Reward
Inherits: Nft, RewardAccounting, IMaverickV2Reward, Multicall, ReentrancyGuard
This reward contract is used to reward users who stake their stakingToken
in this contract. The stakingToken
can be any token with an ERC-20 interface including BoostedPosition LP tokens.
Incentive providers can permissionlessly add incentives to this contract that will be disbursed to stakers pro rata over a given duration that the incentive provider specifies as they add incentives. Incentives can be denominated in one of 5 possible reward tokens that the reward contract creator specifies on contract creation.
The contract creator also has the option of specifying veTokens associated with each of the up-to-5 reward tokens. When incentivizing a rewardToken that has a veToken specified, the staking users will receive a boost to their rewards depending on 1) how much ve tokens they own and 2) how long they stake their rewards disbursement.
State Variables
FOUR_YEARS
BASE_STAKING_FACTOR
STAKING_FACTOR_SLOPE
BASE_PRORATA_FACTOR
PRORATA_FACTOR_SLOPE
UNBOOSTED_MIN_TIME_GAP
This function retrieves the minimum time gap in seconds that must have elasped between calls to pushUnboostedToVe()
.
stakingToken
This function retrieves the address of the token used for staking in this reward contract.
rewardToken0
rewardToken1
rewardToken2
rewardToken3
rewardToken4
veToken0
veToken1
veToken2
veToken3
veToken4
_rewardGetter
MAX_DURATION
MIN_DURATION
rewardData
rewardTokenCount
vault
Functions
constructor
checkAmount
mint
Stake Management Functions
Parameters
Name | Type | Description |
---|---|---|
|
| The address that owns the output NFT |
mintToSender
Mints an NFT stake to caller. This NFT will not possesses any assets until a user stake
s asset to the NFT tokenId as part of a separate call.
stake
This function stakes the staking tokens to the specified tokenId. If tokenId=0
is passed in, then this function will look up the caller's tokenIds and stake to the zero-index tokenId. If the user does not yet have a staking NFT tokenId, this function will mint one for the sender and stake to that newly-minted tokenId.
The amount staked is derived by looking at the new balance on the vault()
. So, for staking to yield a non-zero balance, the user will need to have transfered the stakingToken()
to the vault()
prior to calling stake
. Note, tokens sent to the reward contract instead of the vault will not be stakable and instead will be eligible to be disbursed as rewards to stakers. This is an advanced usage function. If in doubt about the mechanics of staking, use transferAndStake()
instead.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose tokens to stake. |
Returns
Name | Type | Description |
---|---|---|
|
| The amount of staking tokens staked (uint256). |
|
| TokenId where liquidity was staked to. This may differ from the input tokenIf if the input |
transferAndStake
This function transfers a specified amount of staking tokens from the caller to the staking vault()
and stakes them on the recipient's behalf. The user has to approve this reward contract to transfer the staking token on their behalf for this function not to revert.
Parameters
Name | Type | Description |
---|---|---|
|
| Nft tokenId to stake for the staked tokens. |
|
| The amount of staking tokens to transfer and stake. |
Returns
Name | Type | Description |
---|---|---|
|
| The amount of staking tokens staked. May differ from input if there were unstaked tokens in the vault prior to this call. |
|
| TokenId where liquidity was staked to. This may differ from the input tokenIf if the input |
unstakeToOwner
This function initiates unstaking of a specified amount of staking tokens for the caller and sends them to a recipient.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose tokens to unstake. |
|
| The amount of staking tokens to unstake (uint256). |
unstake
This function initiates unstaking of a specified amount of staking tokens on behalf of a specific tokenId and sends them to a recipient.
To unstakeFrom, the caller must have an approval allowance of at least amount
. Approvals follow the ERC-20 approval/allowance interface.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose tokens to unstake. |
|
| The address to which the unstaked tokens will be sent. |
|
| The amount of staking tokens to unstake (uint256). |
getRewardToOwner
This function retrieves the claimable reward for a specific reward token and stake duration for the caller.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose reward to claim. |
|
| The internal index of the reward token. |
|
| The duration (in seconds) for which the rewards were staked. |
Returns
Name | Type | Description |
---|---|---|
|
| rewardOutput A RewardOutput struct containing details about the claimable reward. |
getRewardToOwnerForExistingVeLockup
This function retrieves the claimable reward for a specific reward token, stake duration, and lockup ID for the caller.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose reward to claim. |
|
| The internal index of the reward token. |
|
| The duration (in seconds) for which the rewards were staked. |
|
| The unique identifier for the specific lockup (optional). |
Returns
Name | Type | Description |
---|---|---|
|
| rewardOutput A RewardOutput struct containing details about the claimable reward. |
getReward
This function retrieves the claimable reward for a specific reward token and stake duration for a specified tokenId and sends it to a recipient. If the reward is staked in the corresponding veToken, a new lockup in the ve token will be created.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose reward to claim. |
|
| The address to which the claimed reward will be sent. |
|
| The internal index of the reward token. |
|
| The duration (in seconds) for which the rewards will be staked in the ve contract. |
Returns
Name | Type | Description |
---|---|---|
|
| rewardOutput A RewardOutput struct containing details about the claimable reward. |
getRewardForExistingVeLockup
This function retrieves the claimable reward for a specific reward token, stake duration, lockup ID, and sends it to a recipient for a specified tokenId.
If the reward is staked in the corresponding veToken, the lockupId
lockup will be extended on the veToken contract. Any existing lock on that lockupId will also be extended. To use this function, this reward contract will have to be approved as an extender on the veToken contract.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId whose reward to claim. |
|
| The address to which the claimed reward will be sent. |
|
| The internal index of the reward token. |
|
| The duration (in seconds) for which the rewards will be staked in the ve contract. |
|
| The unique identifier for the specific lockup to extend on the veToken contract. |
Returns
Name | Type | Description |
---|---|---|
|
| rewardOutput A RewardOutput struct containing details about the claimable reward. |
pushUnboostedToVe
Admin Functions
Parameters
Name | Type | Description |
---|---|---|
|
| The internal index of the reward token. |
Returns
Name | Type | Description |
---|---|---|
|
| The amount of unboosted rewards pushed (uint128). |
|
| The timestamp associated with the pushed rewards (uint48). |
|
| The batch index for the pushed rewards (uint256). |
rewardInfo
View Functions
Returns
Name | Type | Description |
---|---|---|
|
| An array of RewardInfo structs containing details about each reward token. |
contractInfo
This function retrieves information about all available reward tokens and overall contract details for this reward contract.
Returns
Name | Type | Description |
---|---|---|
|
| An array of RewardInfo structs containing details about each reward token. |
|
| A ContractInfo struct containing overall contract details. |
earned
This function calculates the total amount of all earned rewards for a specific tokenId across all reward tokens.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId for which to calculate earned rewards. |
Returns
Name | Type | Description |
---|---|---|
|
| An array of EarnedInfo structs containing details about earned rewards for each supported token. |
earned
This function calculates the total amount of all earned rewards for a specific tokenId across all reward tokens.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId for which to calculate earned rewards. |
|
|
Returns
Name | Type | Description |
---|---|---|
|
| earnedInfo An array of EarnedInfo structs containing details about earned rewards for each supported token. |
_earned
tokenIndex
This function retrieves the internal index associated with a specific reward token address.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the reward token to get the index for. |
Returns
Name | Type | Description |
---|---|---|
|
| The internal index of the token within the reward contract (uint8). |
rewardTokenByIndex
This function retrieves the reward token contract associated with a specific index within the reward contract.
Parameters
Name | Type | Description |
---|---|---|
|
| The index of the reward token to retrieve. |
Returns
Name | Type | Description |
---|---|---|
|
| The IERC20 contract associated with the index. |
veTokenByIndex
This function retrieves the veToken contract associated with a specific index within the reward contract.
Parameters
Name | Type | Description |
---|---|---|
|
| The index of the veToken to retrieve. |
Returns
Name | Type | Description |
---|---|---|
|
| The IMaverickV2VotingEscrow contract associated with the index. |
tokenList
This function retrieves a list of all supported tokens in the reward contract.
Parameters
Name | Type | Description |
---|---|---|
|
| A flag indicating whether to include the staking token in the list. |
Returns
Name | Type | Description |
---|---|---|
|
| An array of IERC20 token addresses. |
_updateGlobalReward
Updates the global reward state for a given reward token.
Each time a user stakes or unstakes or a incentivizer adds incentives, this function must be called in order to checkpoint the rewards state before the new stake/unstake/notify occurs.
_updateReward
Updates the reward state associated with an tokenId. Also updates the global reward state.
This function checkpoints the data for a user before they stake/unstake.
_deltaEarned
Amount an tokenId has earned since that tokenId last did a stake/unstake.
deltaEarned = balance * (rewardPerToken - userRewardPerTokenPaid)
_deltaRewardPerToken
Amount of new rewards accrued to tokens since last checkpoint.
_lastTimeRewardApplicable
The smaller of: 1) time of end of reward period and 2) current block timestamp.
_updateAllRewards
Update all rewards.
_stake
Internal User Functions
_unstake
Functions using this function must check that sender has access to the tokenId for this to be / safely called.
boostedAmount
This function calculates the boosted amount an tokenId would receive based on their veToken balance and stake duration.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the tokenId for which to calculate the boosted amount. |
|
| The IMaverickV2VotingEscrow contract representing the veToken used for boosting. |
|
| The raw (unboosted) amount. |
|
| The duration (in seconds) for which the rewards would be staked. |
Returns
Name | Type | Description |
---|---|---|
|
| The boosted amount the tokenId would receive (uint256). |
|
| A boolean indicating whether the boosted amount is staked in the veToken (true) or is disbursed without ve staking required (false). |
_boostAndPay
Internal function for computing the boost and then transferring/staking the resulting rewards. Can not be safely called without checking that the caller has permissions to access the tokenId.
_getReward
Internal getReward function. Can not be safely called without checking that the caller has permissions to access the account.
notifyRewardAmount
Add Reward
The duration of the distribution may not be the same as the input duration. If this notify amount is less than the amount already pending disbursement, then this new amount will be distributed as the same rate as the existing rate and that will dictate the duration. Alternatively, if the amount is more than the pending disbursement, then the input duration will be honored and all pending disbursement tokens will also be distributed at this newly set rate.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the reward token to distribute. |
|
| The duration (in seconds) over which to distribute the rewards. |
Returns
Name | Type | Description |
---|---|---|
|
| _duration The duration in seconds that the incentives will be distributed over. |
transferAndNotifyRewardAmount
This function transfers a specified amount of reward tokens from the caller to distribute them over a defined duration. The caller will need to approve this rewards contract to make the transfer on the caller's behalf. See notifyRewardAmount
for details of how the duration is set by the rewards contract.
Parameters
Name | Type | Description |
---|---|---|
|
| The address of the reward token to transfer. |
|
| The duration (in seconds) over which to distribute the rewards. |
|
| The amount of reward tokens to transfer. |
Returns
Name | Type | Description |
---|---|---|
|
| _duration The duration in seconds that the incentives will be distributed over. |
_notifyRewardAmount
Called by reward depositor to recompute the reward rate. If notifier sends more than remaining amount, then notifier sets the rate. Else, we extend the duration at the current rate.
tokenURI
Required Overrides
name
symbol
Structs
RewardData
Last updated