> For the complete documentation index, see [llms.txt](https://docs.mound.finance/qubit-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mound.finance/qubit-developers/qore/market-list.md).

# Market List

Get all markets listed in Qubit Protocol.

### Qore

```typescript
function allMarkets() external view returns (address[] memory);
```

* RETURN: The addresses of all markets.

### Solidity

```typescript
Qore qore = Qore(<qoreAddress>);
address[] memory markets = qore.allMarkets();
```

### Ethers.js

```typescript
const qore = await ethers.getContractAt(<qoreABI>, <qoreAddress>);
const markets = await qore.allMarkets();
```
