Vaults

Vaults are used to earn rewards. Tokens such as imUSD or Feeder Pool tokens can be deposited to earn additional MTA rewards. On Polygon the contract HeadlessRewardToken is used. This allows for accrual of 2 Rewards and does not contain the Boost functionality that is present on Ethereum Mainnet. Contracts are upgradable.

The Feeder Pool Vault for mUSD/FRAX has been developed by frax.finance and is not part of these docs.

The following table lays out the currently deployed vaults and what contract is used.

imUSD Vault

stake()

function stake (uint256 _amount) external

Stakes a given amount of the StakingToken for the sender

stake()

function stake (address _beneficiary, uint256 _amount) external

Stakes a given amount of the StakingToken for a given beneficiary

exit()

function exit () external

Withdraws stake from pool and claims any rewards

withdraw()

function withdraw (uint256 _amount) external

Withdraws given stake amount from the pool

withdrawAndUnwrap()

function withdrawAndUnwrap (uint256 _amount, uint256 _minAmountOut, address _output, address _beneficiary, address _router, bool _isBassetOut) external returns (uint256 outputQuantity)

Redeems staked interest-bearing asset tokens for either bAsset or fAsset tokens. Withdraws a given staked amount of interest-bearing assets from the vault, redeems the interest-bearing asset for the underlying mAsset and either

  1. Redeems the underlying mAsset tokens for bAsset tokens.

  2. Swaps the underlying mAsset tokens for fAsset tokens in a Feeder Pool.

claimReward()

function claimReward () external

Claims outstanding rewards (both platform and native) for the sender. First updates outstanding reward allocation and then transfers.

claimRewardOnly()

function claimRewardOnly () external

Claims outstanding rewards for the sender. Only the native rewards token, and not the platform rewards

getRewardToken()

function getRewardToken () external returns (contract IERC20)

Gets the RewardsToken

getPlatformToken()

function getPlatformToken () external returns (contract IERC20)

Gets the PlatformToken

lastTimeRewardApplicable()

function lastTimeRewardApplicable () public returns (uint256)

Gets the last applicable timestamp for this reward period

rewardPerToken()

function rewardPerToken () public returns (uint256, uint256)

Calculates the amount of unclaimed rewards a user has earned

earned()

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

Calculates the amount of unclaimed rewards a user has earned

notifyRewardAmount()

function notifyRewardAmount (uint256 _reward) external

Notifies the contract that new rewards have been added. Calculates an updated rewardRate based on the rewards in period.

totalSupply()

function totalSupply () public returns (uint256)

Get the total amount of the staked token

balanceOf()

function balanceOf (address _account) public returns (uint256)

Get the balance of a given account

Last updated