Comment on page
Get Assets In
Get the list of markets an account is currently entered into. In order to supply collateral or borrow in a market, it must be entered first. Entered markets count towards Account Liquidity calculations.
function getAssetsIn(address account) view returns (address[] memory)
- account: The account whose list of entered markets shall be queried.
- RETURN: The address of each market which is currently entered into.
Unitroller troll = Unitroller(0xABCD...);
address[] memory markets = troll.getAssetsIn(0xMyAccount);
const troll = Unitroller.at(0xABCD...);
const markets = await troll.methods.getAssetsIn(fTokens).call();
Last modified 2yr ago