imUSD
imUSD is the interest-bearing mUSD. This asset represent the deposited mUSD in SAVE and accrues in value.
Contracts are upgradable.
Contracts
Address
imUSD follows the ERC20 and ERC4626 standards:
For ERC20, the non-standard decreaseAllowance
and increaseAllowance
functions have been added to mitigate the well-known issues around setting allowances. These are based on the OpenZeppelin ERC20 implementation.
For ERC4626: Tokenized Vault Standard, the non-standard functions deposit(uint256 assets, address receiver, address referrer)
and shares(uint256 shares, address receiver, address referrer)
have been added to be use with the Alliance Referral program.
ERC-4626 Functions
asset()
function asset() external view returns (address assetTokenAddress);
The address of the underlying token used for the Vault uses for accounting, depositing, and withdrawing.
totalAssets()
function totalAssets() external view returns (uint256 totalManagedAssets);
Total amount of the underlying asset that is “managed” by Vault.
convertToShares()
function convertToShares(uint256 assets) external view returns (uint256 shares);
The amount of shares that the Vault would exchange for the amount of assets provided, in an ideal scenario where all the conditions are met.
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be convert to vault shares.
convertToAssets()
function convertToAssets(uint256 shares) external view returns (uint256 assets);
The amount of assets that the Vault would exchange for the amount of shares provided, in an ideal scenario where all the conditions are met.
Parameter
Type
Description
shares
uint256
The amount of vault shares to be converted to the underlying assets.
maxDeposit()
function maxDeposit(address caller) external view returns (uint256 maxAssets);
The maximum number of underlying assets that caller can deposit.
Parameter
Type
Description
caller
address
Account that the assets will be transferred from.
previewDeposit()
function previewDeposit(uint256 assets) external view returns (uint256 shares);
Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions.
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be convert to vault shares.
deposit()
function deposit(uint256 assets, address receiver) external returns (uint256 shares);
Mint vault shares to receiver by transferring exact amount of underlying asset tokens from the caller.
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be convert to vault shares.
receiver
address
The account that the vault shares will be minted to.
deposit()
function deposit(uint256 assets, address receiver, address referrer) external returns (uint256 shares);
Overloaded non-standard deposit
method with an optional referrer address
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be convert to vault shares.
receiver
address
The account that the vault shares will be minted to.
referrer
address
Referrer address for this deposit.
maxMint()
function maxMint(address caller) external view returns (uint256 maxShares);
The maximum number of vault shares that caller can mint.
Parameter
Type
Description
caller
address
Account that the underlying assets will be transferred from.
previewMint()
function previewMint(uint256 shares) external view returns (uint256 assets);
Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given current on-chain conditions.
Parameter
Type
Description
shares
uint256
The amount of vault shares to be minted
mint()
function mint(uint256 shares, address receiver) external returns (uint256 shares);
Mint exact amount of vault shares to the receiver by transferring enough underlying asset tokens from the caller.
Parameter
Type
Description
shares
uint256
The amount of vault shares to be minted
receiver
address
The account that the vault shares will be minted to.
mint()
function mint(uint256 shares, address receiver, address referrer) external returns (uint256 shares);
Overloaded non-standard mint
method with an optional referrer address
Parameter
Type
Description
shares
uint256
The amount of vault shares to be minted
receiver
address
The account that the vault shares will be minted to.
referrer
address
Referrer address for this mint.
maxWithdraw()
function maxWithdraw(address owner) external view returns (uint256 maxAssets);
The maximum number of underlying assets that owner can withdraw.
Parameter
Type
Description
owner
address
Account that owns the vault shares.
previewWithdraw()
function previewWithdraw(uint256 assets) external view returns (uint256 shares);
Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, given current on-chain conditions.
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be withdrawn.
withdraw()
function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares);
Burns enough vault shares from owner and transfers the exact amount of underlying asset tokens to the receiver.
Parameter
Type
Description
assets
uint256
The amount of underlying assets to be withdrawn from the vault.
receiver
address
The account that the underlying assets will be transferred to.
owner
address
Account that owns the vault shares to be burnt
maxRedeem()
function maxRedeem(address owner) external view returns (uint256 maxShares);
The maximum number of shares an owner can redeem for underlying assets.
Parameter
Type
Description
owner
address
Account that owns the vault shares.
previewRedeem()
function previewRedeem(uint256 shares) external view returns (uint256 assets);
Allows an on-chain or off-chain user to simulate the effects of their redemption at the current block, given current on-chain conditions.
Parameter
Type
Description
shares
uint256
The amount of vault shares to be burnt.
redeem()
function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets);
Burns exact amount of vault shares from owner and transfers the underlying asset tokens to the receiver.
Parameter
Type
Description
shares
uint256
The amount of vault shares to be burnt.
receiver
address
he account the underlying assets will be transferred to.
owner
address
The account that owns the vault shares to be burnt
ERC-20 Functions
totalSupply()
function totalSupply () external returns (uint256)
Returns the amount of tokens in existence.
balanceOf()
function balanceOf () external returns (uint256)
Returns the amount of tokens owned by account
.
transfer()
function transfer () external returns (bool)
Moves amount
tokens from the caller's account to recipient
.
Returns a boolean value indicating whether the operation succeeded.
Emits a {Transfer} event.
allowance()
function allowance () external returns (uint256)
Returns the remaining number of tokens thatspender
will be allowed to spend on behalf ofowner
through {transferFrom}. This is zero by default.
This value changes when {approve} or {transferFrom} are called.
approve()
function approve () external returns (bool)
Sets amount
as the allowance of spender
over the caller's tokens.
Returns a boolean value indicating whether the operation succeeded.
IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
Emits an {Approval} event.
transferFrom()
function transferFrom () external returns (bool)
Moves amount
tokens from sender
to recipient
using the allowance mechanism. amount
is then deducted from the caller's allowance.
Returns a boolean value indicating whether the operation succeeded.
Emits a {Transfer} event.
increaseAllowance()
function increaseAllowance () public returns (bool)
Atomically increases the allowance granted to spender
by the caller.
This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}.
Emits an {Approval} event indicating the updated allowance.
Requirements:
spender
cannot be the zero address.
decreaseAllowance()
function decreaseAllowance () public returns (bool)
Atomically decreases the allowance granted to spender
by the caller.
This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}.
Emits an {Approval} event indicating the updated allowance.
Requirements:
spender
cannot be the zero address.spender
must have allowance for the caller of at leastsubtractedValue
.
Save Functions
balanceOfUnderlying()
function balanceOfUnderlying (address _user) external returns (uint256 balance)
Returns the underlying balance of a given user
Parameter
Type
Description
_user
address
Address of the user to check
underlyingToCredits()
function underlyingToCredits (uint256 _underlying) external returns (uint256 credits)
Converts a given underlying amount into credits
Parameter
Type
Description
_underlying
uint256
Units of underlying
creditsToUnderlying()
function creditsToUnderlying (uint256 _credits) external returns (uint256 amount)
Converts a given credit amount into underlying
Parameter
Type
Description
_credits
uint256
Units of credits
creditBalances()
Deprecated in favour of `balanceOf(address)`. Maintained for backwards compatibility. Returns the credit balance of a given user
function creditBalances (address _user) external returns (uint256)
depositSavings()
function depositSavings (uint256 _underlying) external returns (uint256 creditsIssued)
Deposit the senders savings to the vault, and credit them internally with "credits". Credit amount is calculated as a ratio of deposit amount and exchange rate: credits = underlying / exchangeRate We will first update the internal exchange rate by collecting any interest generated on the underlying.
Parameter
Type
Description
_underlying
uint256
Units of underlying to deposit into savings vault
depositSavings()
function depositSavings (uint256 _underlying, address _beneficiary) external returns (uint256 creditsIssued)
Deposit the senders savings to the vault, and credit them internally with "credits". Credit amount is calculated as a ratio of deposit amount and exchange rate: credits = underlying / exchangeRate We will first update the internal exchange rate by collecting any interest generated on the underlying.
Parameter
Type
Description
_underlying
uint256
Units of underlying to deposit into savings vault
_beneficiary
address
Immediately transfer the imUSD token to this beneficiary address
depositSavings()
function depositSavings (uint256 _underlying, address _beneficiary, address _referrer) external returns (uint256 creditsIssued)
Overloaded depositSavings
method with an optional referrer address.
_underlying
uint256
Units of underlying to deposit into savings vault. eg mUSD or mBTC
_beneficiary
address
Address to the new credits will be issued to.
_referrer
address
Referrer address for this deposit.
redeem()
function redeem () external returns (uint256 massetReturned)
redeemCredits()
function redeemCredits (uint256 _credits) external returns (uint256 massetReturned)
Redeem specific number of the senders "credits" in exchange for underlying. Payout amount is calculated as a ratio of credits and exchange rate: payout = credits * exchangeRate
Parameter
Type
Description
_credits
uint256
Amount of credits to redeem
redeemUnderlying()
function redeemUnderlying (uint256 _underlying) external returns (uint256 creditsBurned)
Redeem credits into a specific amount of underlying. Credits needed to burn is calculated using: credits = underlying / exchangeRate
Parameter
Type
Description
_underlying
uint256
Amount of underlying to redeem
redeemAndUnwrap()
function redeemAndUnwrap (uint256 _amount, bool _isCreditAmt, uint256 _minAmountOut, address _output, address _beneficiary, address _router, bool _isBassetOut) external returns (uint256 creditsBurned, uint256 massetReturned, uint256 outputQuantity)
Redeem credits into a specific amount of underlying, unwrap into a selected output asset, and send to a beneficiary Credits needed to burn is calculated using: credits = underlying / exchangeRate
_amount
uint256
Units to redeem (either underlying or credit amount).
_isCreditAmt
bool
true
if amount
is in credits. eg imUSD. false
if amount
is in underlying. eg mUSD.
_minAmountOut
uint256
Minimum amount of output
tokens to unwrap for. This is to the same decimal places as the output
token.
_output
address
Asset to receive in exchange for the redeemed mAssets. This can be a bAsset or a fAsset. For example: - bAssets (USDC, DAI, sUSD or USDT) or fAssets (GUSD, BUSD, alUSD, FEI or RAI) for mainnet imUSD Vault. - bAssets (USDC, DAI or USDT) or fAsset FRAX for Polygon imUSD Vault. - bAssets (WBTC, sBTC or renBTC) or fAssets (HBTC or TBTCV2) for mainnet imBTC Vault.
_beneficiary
address
Address to send output
tokens to.
_router
address
mAsset address if the output is a bAsset. Feeder Pool address if the output is a fAsset.
_isBassetOut
bool
true
if output
is a bAsset. false
if output
is a fAsset.
poke()
function poke () external
External poke function allows for the redistribution of collateral between here and the current connector, setting the ratio back to the defined optimal.
Last updated