Networks
Chain IDs, endpoints, and the currently deployed
allora-chainversion for each Allora network.
The Allora Network runs as two public networks: a testnet for development and integration, and
the production mainnet. Each may run a different allora-chain version, which also determines the
emissions REST/gRPC API version (for example, mainnet's v0.16.0 serves emissions/v9
while testnet's v0.17.0 serves emissions/v10).
| Testnet | Mainnet | |
|---|---|---|
| Chain ID | allora-testnet-1 | allora-mainnet-1 |
| Deployed version | v0.17.0 | v0.16.0 |
| Emissions API namespace | emissions/v10 | emissions/v9 |
| RPC JSON | https://allora-rpc.testnet.allora.network/ | https://allora-rpc.mainnet.allora.network/ |
| gRPC | https://allora-grpc.testnet.allora.network/ | https://allora-grpc.mainnet.allora.network/ |
| API (Cosmos LCD - REST) | https://allora-api.testnet.allora.network/ | https://allora-api.mainnet.allora.network/ |
| Explorer | https://explorer.testnet.allora.network/allora-testnet-1 | https://explorer.allora.network/ |
| Faucet | https://faucet.testnet.allora.network/ | — |
The tables on this page are rendered from a machine-readable manifest served at /api/networks.json.
Agents and scripts can read the same chain IDs, endpoints, and versions from there instead of scraping
this page.
Deployed versions change with each software upgrade. Testnet is typically upgraded ahead of mainnet, so features from a newer release (such as the v0.17.0 multi-label and labeled network-inference APIs) may be available on testnet before they reach mainnet. Always confirm against the allora-chain releases (opens in a new tab) and the Release Notes.
Testnet
- Chain ID:
allora-testnet-1 - Deployed version: v0.17.0
- Emissions API namespace:
emissions/v10 - RPC JSON:
https://allora-rpc.testnet.allora.network/ - gRPC:
https://allora-grpc.testnet.allora.network/ - API (Cosmos LCD - REST):
https://allora-api.testnet.allora.network/ - Explorer:
https://explorer.testnet.allora.network/allora-testnet-1 - Faucet:
https://faucet.testnet.allora.network/
Use the testnet for building and testing integrations, running workers/reputers, and trying features before they ship to mainnet. For wallet creation and faucet funding, see Setup Wallet.
Mainnet
- Chain ID:
allora-mainnet-1 - Deployed version: v0.16.0
- Emissions API namespace:
emissions/v9 - RPC JSON:
https://allora-rpc.mainnet.allora.network/ - gRPC:
https://allora-grpc.mainnet.allora.network/ - API (Cosmos LCD - REST):
https://allora-api.mainnet.allora.network/ - Explorer:
https://explorer.allora.network/ - Faucet: —
Mainnet has no faucet — fund addresses with ALLO yourself.
The emissions API version differs by network. On mainnet (v0.16.0) network-inference
endpoints live under emissions/v9 and return a single (unlabeled) value; on testnet
(v0.17.0) they live under emissions/v10 and return
labeled network-inference bundles.
Pick the version segment that matches the network you are querying.
Related
- Allora API Endpoint — querying inferences over REST
- RPC JSON Data Access — querying over RPC JSON
- Setup Wallet — RPC JSON URL and Chain ID configuration
- Software Upgrades — how network versions are upgraded