Market List
Last updated
Was this helpful?
Get all markets listed in Qubit Protocol.
function allMarkets() external view returns (address[] memory);RETURN: The addresses of all markets.
Qore qore = Qore(<qoreAddress>);
address[] memory markets = qore.allMarkets();const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
const markets = await qore.allMarkets();Last updated
Was this helpful?
Was this helpful?