Get Markets In
Qore
function marketListOf(address account) external view returns (address[] memory);Solidity
Qore qore = Qore(<qoreAddress>);
address[] memory markets = qore.marketListOf(<accountAddress>);Ethers.js
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
const markets = await qore.marketListOf(<accountAddress>);Last updated
Was this helpful?