Build on Allora
Forge
Existing Topics

Existing Allora Network Topics

Topics currently active on the Allora Network

The tables below list every topic that is active on each Allora network, with its topic ID, on-chain metadata (name), epoch length (in blocks), loss method, and category (price / log-return / volatility). Each Forge competition targets one of these live topics.

These tables are generated from live chain state, not maintained by hand. A scheduled job queries the Cosmos LCD (REST) API of each network (testnet allora-testnet-1 via emissions/v10, mainnet allora-mainnet-1 via emissions/v9), keeps only topics whose is_topic_active query returns true, and publishes the result at /api/topics.json — the same data this page renders. The data below last changed on 2026-08-18. Topics activate and deactivate over time, so verify a topic's status before building against it.

Start here: the sandbox topic

Testnet's sandbox topics are the no-penalty onboarding playground: somewhere to make your first worker submissions, with no whitelist required and nothing at stake if you get one wrong.

  • 69PLAYGROUND: 1 day BTC/USD Price Prediction
  • 77PLAYGROUND FAST - 5 minute BTC/USD Price Prediction

The PLAYGROUND FAST topic is the short-epoch counterpart of the daily one, for quicker feedback while you iterate. Both are marked sandbox in the table below and carry a sandbox flag in /api/topics.json, which is where the list above is read from — so it cannot fall out of step with the tables.

Testnet topics (allora-testnet-1)

41 active topics.

Topic IDMetadataEpoch Length (blocks)CategoryLoss Method
1ETH 10min Prediction120pricemse
2ETH 24h Prediction17280pricemse
3BTC 10min Prediction120pricemse
8BNB 20min Prediction240pricemse
9ARB 20min Prediction240pricemse
13ETH 5min Prediction60pricemse
14BTC 5min Prediction60pricemse
18BTC 8h Prediction5760pricemse
37SOL/USD - 5min Price Prediction35pricemse
38SOL/USD - 8h Price Prediction35pricemse
39SOL/USD - 5min Volatility Prediction35volatilitymse
41ETH/USD - 8h Price Prediction35pricemse
42BTC/USD - 8h Price Prediction35pricemse
561 hour BERA/USD Log-Return Prediction655log-returnztae
588 hour SOL/USD Log-Return Prediction52log-returnczar
6024 hour XAU/USD Log-Return Prediction60log-returnczar
611 day BTC/USD Log-Return Prediction60log-returnczar
621 day SOL/USD Log-Return Prediction60log-returnczar
631 day ETH/USD Log-Return Prediction60log-returnczar
648h BTC/USD Log-Return Prediction (5min Updates)54log-returnczar
658h BTC/USD Log-Return Prediction (2h Updates)1286log-returnczar
667 day SOL/USD Log-Return Prediction720log-returnczar
677 day BTC/USD Log-Return Prediction720log-returnczar
687 day ETH/USD Log-Return Prediction720log-returnczar
69sandboxPLAYGROUND: 1 day BTC/USD Price Prediction54pricemse
707 day NEAR/USD Log-Return Prediction720log-returnczar
718 hour NEAR/USD Log-Return Prediction60log-returnczar
721 hour BTC/USD Log-Return Prediction60log-returnczar
731 hour ETH/USD Log-Return Prediction60log-returnczar
7415 minute BTC/USD Log-Return Prediction60log-returnczar
7515 minute ETH/USD Log-Return Prediction60log-returnczar
7615 minute SOL/USD Log-Return Prediction60log-returnczar
77sandboxPLAYGROUND FAST - 5 minute BTC/USD Price Prediction60priceczar
7915 minute BTC/USD - Volatility Prediction60volatilitymse
8015 minute ETH/USD - Volatility Prediction60volatilitymse
8115 minute XRP/USD - Volatility Prediction60volatilitymse
8215 minute SOL/USD - Volatility Prediction60volatilitymse
83BTC/USD - Log Returns - 8h60log-returnczar
84ETH/USD - Log Returns - 8h60log-returnczar
854 hour ETH/USD - Volatility Prediction60volatilitymse
8724 hour xyz:GOLD (Hyperliquid) Triple-Barrier Classification60pricefocal

Mainnet topics (allora-mainnet-1)

15 active topics.

Topic IDMetadataEpoch Length (blocks)CategoryLoss Method
1BTC/USD - Log Returns - 8h75log-returnczar
2ETH/USD - Log Returns - 8h75log-returnczar
3SOL/USD - Log Returns - 8h75log-returnczar
9ETH/USD - Price Prediction - 8h60pricemse
10SOL/USD - Price Prediction - 8h60pricemse
14BTC/USD - Price Prediction - 8h60pricemse
15BTC/USD - Log Returns - 24h60log-returnczar
16ETH/USD - Log Returns - 24h60log-returnczar
17SOL/USD - Log Returns - 24h60log-returnczar
18BTC/USD - Log Returns - 20m60log-returnczar
19NEAR/USD - Log Returns - 8h60log-returnczar
20BTC/USD - Volatility - 15m60volatilitymse
21ETH/USD - Volatility - 15m60volatilitymse
22XRP/USD - Volatility - 15m60volatilitymse
23SOL/USD - Volatility - 15m60volatilitymse
⚠️

Warning: Topic IDs are never guaranteed to be consistent between separate chains/deployments. The same prediction task can have different topic IDs on testnet and mainnet (for example, BTC/USD - Log Returns - 8h is topic 83 on testnet and topic 1 on mainnet).

Verify a topic's status

Query the live chain to confirm a topic's current definition and active status. Note that the emissions API version segment differs by network (see Networks):

# Testnet (emissions/v10)
curl -s https://allora-api.testnet.allora.network/emissions/v10/topics/69
curl -s https://allora-api.testnet.allora.network/emissions/v10/is_topic_active/69
 
# Mainnet (emissions/v9)
curl -s https://allora-api.mainnet.allora.network/emissions/v9/topics/1
curl -s https://allora-api.mainnet.allora.network/emissions/v9/is_topic_active/1

To consume the same list programmatically, fetch the published JSON instead of scraping this page:

curl -s https://docs.allora.network/api/topics.json

Next