Protocol Integrations (V5)
This page provides information on how to access full documentation on the dynamic vault contract.
Last updated
This page provides information on how to access full documentation on the dynamic vault contract.
Last updated
For an on-chain integration to a dynamic vault contract, you can start by viewing the contract source code on Etherscan or Snowtrace, which will provide you the contract source code, a list of functions and their descriptions, as well as all of the libraries, interfaces, factories, and controllers.
As a Lender, there are only a handful of functions you will ever need to call. They are to
Make Investments
Request Withdrawals
Read contract data
These three are covered in more detail below. There are quite a number more in detailed in the full code, libraries, and interfaces on Etherscan and Snowtrace but we present the most important below.
To make an investment, you must first call the function to create a spending allowance. This is the amount the the caller is authorising the pool contract to spend.
...where amount is the number of assets you'd like to approve to be deposited and address is the wallet address of the lender. It will return a boolean, true if the request succesful, false if the request failed.
Once the allowance is approved, you will then need to call the function
where assets is the number of assets you'd like to deposit and lender is the wallet address of the lender making the deposit.
There is only a single function for creating a withdrawal request. After calling this function successfully, the liquidity asset (USDC, EURC) will be send back to your wallet directly from the vault.
To make a withdrawal request, you must call the following function...
...where shares is the number of vault tokens you wish to be redeemed. It will return the withdrawal request amount in assets.
To simulate the result of a withdrawal request at the current block and see how many assets would be withdrawn for a given number of vault tokens (i.e. shares), you can call the following function...
It will returns the amount of assets that would be requested if this entire redeem request were to be processed at the current block. Note: This is equivalent of EIP-4626 previewRedeem.
To simulate the result of a withdrawal request at the current block and see how many vault tokens (i.e. shares) would be burned if this entire withdrawal request were to be processed at the current block, you can call the following function...
It will returns the amount of shares that would be burned if this entire withdrawRequest were to be processed at the current block. Note: This is equivalent of EIP-4626 previewWithdraw.
To see the get the value of a certain number of vault tokens as converted to liquidity assets (USDC, EURC), you can call the following function for a specified number of assets and it will return the number of shares.
To see the value of a certain number of assets (USDC, EURC) converted to vault tokens (i.e. shares), you can call the following function for a specified number of assets and it will return the number of shares.
As a Lender, all of the important information regarding the vault can be called back from the contract.
and it will return the Dynamic Pool Overview data in the following structure
To get the current parameters and configuration of the pool, you can call...
and it will return the following data
To get data on a specific wallet address ("account"), you can call the following function...
and it will return the following data
1) to have been to OpenTrade
2) to have had your whitelisted and
To see a demo of this working in action, you can visit our product documentation .
To view a live example of making a withdrawal request, you can view our product documentation .