MIMOVaultActions
The MIMOVaultActions
actions contract is a mirror of the VaultsCore
owner access restricted functionalities. Its sole purpose is to provide a readable way for MIMOProxy
owners to interact with VaultsCore
through their MIMOProxy
All functions non payable functions of the MIMOVaultActions can be reproduced through the MIMOProxyActions multicall() function.
Write Methods
function deposit(IERC20 collateral, uint256 amount)
function deposit(IERC20 collateral, uint256 amount)
Calls VaultsCore
deposit()
.
Param Name | Type | Description |
---|---|---|
| IERC20 | The address of the collateral type to be deposited |
| uint256 | The amount of tokens to be deposited |
function depositETH()
function depositETH()
Calls VaultsCore
depositETH()
.
depositAndBorrow(address _collateralType, uint256 _depositAmount, uint256 _borrowAmount)
depositAndBorrow(address _collateralType, uint256 _depositAmount, uint256 _borrowAmount)
Calls VaultsCore
depositAndBorrow()
.
Param Name | Type | Description |
---|---|---|
| address | The address of the collateral type to be deposited |
| uint256 | The amount of tokens to be deposited in WEI |
_ | uint256 | The amount of borrowed StableX tokens in WEI |
depositETHAndBorrow(uint256 borrowAmount)
depositETHAndBorrow(uint256 borrowAmount)
Calls VaultsCore
depositETHAndBorrow()
.
Param Name | Type | Description |
---|---|---|
| uint256 | The amount of borrowed StableX tokens in WEI |
withdraw(uint256 vaultId, uint256 amount)
withdraw(uint256 vaultId, uint256 amount)
Calls VaultsCore
withdraw()
.
Param Name | Type | Description |
---|---|---|
| uint256 | The id of the vault from which to withdraw the collateral |
| uint256 | The amount of ERC20 tokens to be withdrawn |
withdrawETH(uint256 vaultId, uint256 amount)
withdrawETH(uint256 vaultId, uint256 amount)
Calls VaultsCore
withdrawETH()
.
Param Name | Type | Description |
---|---|---|
| uint256 | The id of the vault from which to withdraw the collateral |
| uint256 | The amount of ETH to be withdrawn |
borrow(uint256 vaultId, uint256 amount)
borrow(uint256 vaultId, uint256 amount)
Calls VaultsCore
borrow()
.
Param Name | Type | Description |
---|---|---|
| uint256 | The id of the vault from which to borrow |
| uint256 | The amount of |
View Methods
contractAddress()
contractAddress()
Returns the MIMOVaultActions
address. This is to access the contract address within the delegate call.
core()
()
Returns the VaultsCore
address.
vaultsData()
vaultsData()
Returns the VaultsDataProvider
address.
stablex()
stablex()
Returns the stableX
address.
proxyFactory()
proxyFactory()
Returns the MIMOProxyFactory
address.
Last updated