Developers
Reference
Networks

Networks

Chain IDs, endpoints, and the currently deployed allora-chain version 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).

TestnetMainnet
Chain IDallora-testnet-1allora-mainnet-1
Deployed versionv0.17.0v0.16.0
Emissions API namespaceemissions/v10emissions/v9
RPC JSONhttps://allora-rpc.testnet.allora.network/https://allora-rpc.mainnet.allora.network/
gRPChttps://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/
Explorerhttps://explorer.testnet.allora.network/allora-testnet-1https://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/v10 API)
  • 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/v9 API)
  • 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