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: testnet runs v0.17.0 and serves emissions/v10, mainnet runs v0.17.0 and serves emissions/v10.

TestnetMainnet
Chain IDallora-testnet-1allora-mainnet-1
Deployed versionv0.17.0v0.17.0
Emissions API namespaceemissions/v10emissions/v10
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/
Faucethttps://faucet.testnet.allora.network/
Archive RPC (full history)https://rpc.archive.allora.network/
Archive API (Cosmos LCD - REST)https://api.archive.allora.network/
Archive gRPChttps://grpc.archive.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/
  • Archive RPC (full history):
  • Archive API (Cosmos LCD - REST):
  • Archive gRPC:

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.17.0
  • Emissions API namespace: emissions/v10
  • 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:
  • Archive RPC (full history): https://rpc.archive.allora.network/
  • Archive API (Cosmos LCD - REST): https://api.archive.allora.network/
  • Archive gRPC: https://grpc.archive.allora.network/

Mainnet has no faucet — fund addresses with ALLO yourself.

The archive endpoints serve the complete chain history from block 1 and are query-only: no transaction broadcast, and no tx_search or block_search. They exist for historical lookups by exchanges and integrators — for tip-of-chain reads and for submitting transactions, use the regular mainnet endpoints above. See RPC JSON Data Access for the deny list and rate limits.

The hostnames rpc.allora.network, api.allora.network and grpc.allora.network are extra aliases of the live (tip) mainnet endpoints — no chain in the name means mainnet. On testnet, rpc.testnet.allora.network, api.testnet.allora.network and grpc.testnet.allora.network alias the live testnet endpoints. They are not archive hosts.

Testnet has no public archive endpoint yet, which is why the testnet column has no archive rows filled in. When one lands, its history will begin at block 600,001 rather than at genesis — it will not answer for earlier testnet blocks.

The emissions API version segment is per-network — always pick the one matching the network you are querying: emissions/v10 on testnet and emissions/v10 on mainnet. Since v0.17.0 these network-inference endpoints return labeled network-inference bundles rather than a single unlabeled value.

Related