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, v0.16.x serves emissions/v9 while v0.17.x 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/ |
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 (serves the
emissions/v10API) - 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 / wallet setup: see Setup Wallet
Use the testnet for building and testing integrations, running workers/reputers, and trying features before they ship to mainnet.
Mainnet
- Chain ID:
allora-mainnet-1 - Deployed version: v0.16.0 (serves the
emissions/v9API) - 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/
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