With the amount of new subnets being added it can be hard to get up to date information across all subnets, so data may be slightly out of date from time to time
What is Colosseum and the Core Problem It Solves
Colosseum is Bittensor Subnet 38, a decentralized peer-to-peer betting protocol deployed on the Bittensor EVM that eliminates the need for centralized bookmakers by leveraging on-chain smart contracts and validator incentives to ensure trustlessness and transparency. By embedding betting logic in a permissionless blockchain environment, Colosseum addresses core issues of central points of failure, opaque matching and settlement, and single-party risk inherent in traditional betting platforms.
Miner and Validator Loop
As a Bittensor subnet, Colosseum implements a continuous miner/validator loop. Miners act as participants who place wagers on active betting markets via the TAO Colosseum smart contract. Validators, running specialized Python processes, query the contract for each miner’s time-decayed betting volume, calculate weighted scores, and then set on-chain neuron weights every ~360 blocks (~72 minutes). This creates a closed-loop where betting activity both drives and is rewarded by the Bittensor incentive layer.
Miner Responsibilities
Miners participate by staking native TAO tokens in betting games such as the underdog “Red vs Blue” smart contract. Each bet is recorded on chain, and miners produce a continuous stream of signed BTTC (Bittensor EVM) transactions representing their user staking and selection. This betting volume serves as the miner’s proof of participation and underpins the reward calculation.
Validator Responsibilities
Validators run the bundled Python validator module (`validator/validator.py`) which: 1) monitors the TAO Colosseum smart contract via an EVM RPC endpoint; 2) fetches each miner’s cumulative bet volumes; 3) applies an exponential time-decay weight over a rolling 7-day window to emphasize recent participation; and 4) commits a weight update transaction on the Bittensor Metagraph. The time-decay schedule (Today 1.00, Yesterday 0.85, …, 6 days ago 0.10) ensures dynamic reward allocation based on sustained activity.
Value Production and End Product
Rather than producing ML model outputs, Colosseum’s end product is the distribution of Bittensor network weights, which encode each miner’s activity and credit contribution. These weights are stored in the Metagraph, enabling subsequent layers (e.g., inference or governance subnets) to reference participant reputation. The platform also generates on-chain transaction data, off-chain validator snapshots, and a public leaderboard for community transparency.
Incentive Mechanism and Reward Distribution
Colosseum’s incentive mechanism is based on proportional, time-decayed betting volume: miners with higher staked volume over the past week receive more TAO rewards. A 1.5% platform fee is applied to each resolved pool, funding subnet operations and ensuring sustainability. Validators aggregate scores and distribute rewards every weight update cycle (~360 blocks) via the standard Bittensor emission mechanism, currently set at 0.53% of total supply per epoch.
Comparison to Centralized Alternatives
Traditional centralized betting exchanges rely on centralized liquidity pools and off-chain matching engines, exposing participants to counterparty risk, opaque settlement processes, and potential censorship. In contrast, Colosseum’s smart contract enforces resolution rules on chain, uses verifiable randomness (`drand`) for anti-sniping, and leverages the Bittensor protocol for transparent reward distribution, creating a trustless and permissionless alternative.
What is Colosseum and the Core Problem It Solves
Colosseum is Bittensor Subnet 38, a decentralized peer-to-peer betting protocol deployed on the Bittensor EVM that eliminates the need for centralized bookmakers by leveraging on-chain smart contracts and validator incentives to ensure trustlessness and transparency. By embedding betting logic in a permissionless blockchain environment, Colosseum addresses core issues of central points of failure, opaque matching and settlement, and single-party risk inherent in traditional betting platforms.
Miner and Validator Loop
As a Bittensor subnet, Colosseum implements a continuous miner/validator loop. Miners act as participants who place wagers on active betting markets via the TAO Colosseum smart contract. Validators, running specialized Python processes, query the contract for each miner’s time-decayed betting volume, calculate weighted scores, and then set on-chain neuron weights every ~360 blocks (~72 minutes). This creates a closed-loop where betting activity both drives and is rewarded by the Bittensor incentive layer.
Miner Responsibilities
Miners participate by staking native TAO tokens in betting games such as the underdog “Red vs Blue” smart contract. Each bet is recorded on chain, and miners produce a continuous stream of signed BTTC (Bittensor EVM) transactions representing their user staking and selection. This betting volume serves as the miner’s proof of participation and underpins the reward calculation.
Validator Responsibilities
Validators run the bundled Python validator module (`validator/validator.py`) which: 1) monitors the TAO Colosseum smart contract via an EVM RPC endpoint; 2) fetches each miner’s cumulative bet volumes; 3) applies an exponential time-decay weight over a rolling 7-day window to emphasize recent participation; and 4) commits a weight update transaction on the Bittensor Metagraph. The time-decay schedule (Today 1.00, Yesterday 0.85, …, 6 days ago 0.10) ensures dynamic reward allocation based on sustained activity.
Value Production and End Product
Rather than producing ML model outputs, Colosseum’s end product is the distribution of Bittensor network weights, which encode each miner’s activity and credit contribution. These weights are stored in the Metagraph, enabling subsequent layers (e.g., inference or governance subnets) to reference participant reputation. The platform also generates on-chain transaction data, off-chain validator snapshots, and a public leaderboard for community transparency.
Incentive Mechanism and Reward Distribution
Colosseum’s incentive mechanism is based on proportional, time-decayed betting volume: miners with higher staked volume over the past week receive more TAO rewards. A 1.5% platform fee is applied to each resolved pool, funding subnet operations and ensuring sustainability. Validators aggregate scores and distribute rewards every weight update cycle (~360 blocks) via the standard Bittensor emission mechanism, currently set at 0.53% of total supply per epoch.
Comparison to Centralized Alternatives
Traditional centralized betting exchanges rely on centralized liquidity pools and off-chain matching engines, exposing participants to counterparty risk, opaque settlement processes, and potential censorship. In contrast, Colosseum’s smart contract enforces resolution rules on chain, uses verifiable randomness (`drand`) for anti-sniping, and leverages the Bittensor protocol for transparent reward distribution, creating a trustless and permissionless alternative.
Live Components vs. Features in Development
The core TAO Colosseum smart contract and associated validator and miner clients are live on mainnet. The Rock-Paper-Scissors (RPS) tournament is currently operational, enabling miners to participate in timed match-based games. Upcoming modules listed on the front-end include Threshold Catastrophe, Last Stander, Anti-Coordination Slots, and a Werewolf AI variant, which are slated for sequential deployment in Q2–Q3 2026.
Technical Architecture
Colosseum’s architecture consists of three primary components: 1) the Solidity smart contract (`TAO_Colosseum.sol`) implementing Underdog mechanics, drand integration, and fee logic; 2) the Python package (`taocolosseum/`) containing base neuron classes, configuration constants, and validator logic (`api.py`, `contract.py`, `database.py`, `forward.py`, `reward.py`); and 3) the `validator/` entry point (`validator.py`) for weight computation and Metagraph interaction.
GitHub Repository Contents
The `tao-colosseum-subnet` repo includes: `tao-colosseum-smart-contract/contracts/TAO_Colosseum.sol`, `taocolosseum/` Python package, `validator/validator.py`, `docs/` guides, and testing scripts. Developers can fork, modify game parameters, or extend validator logic. The `.env.example`, `requirements.txt`, and `Dockerfile` facilitate local setup and Dockerized deployment.
Key Metrics
The repository has 31 commits, 1 contributor (`taopleb Pleb`), and currently 0 stars, reflecting a nascent but focused project. On TAO.app, Colosseum’s alpha token trades at τ 0.01198 (~$3.42), with a circulating supply of 61.92K α and an emission rate of 0.53% per epoch. Daily trading volume is ~318.85K τ, indicating active market interest.
Validator Scoring Mechanism
Validator scoring employs an exponential time decay over a 7-day window: weights are 1.00 (today), 0.85 (1 day ago), …, 0.10 (6 days ago). This ensures recent wagering activity has greater impact on reward allocation. Scores are computed off-chain, then submitted to the Metagraph during each `set_weights` transaction.
APIs and Integration Points
The validator exposes a REST API (`/health`, `/scores`, `/volumes`, `/leaderboard`, `/snapshots`, `/api/wallet-mapping`), enabling external dashboards, front-ends, or analytics bots to query real-time state. A wallet-mapping endpoint allows coldkey → EVM address registration, ensuring correct reward attribution. This API runs on port 8000 by default and is documented in `http://localhost:8000/docs`.
Live Components vs. Features in Development
The core TAO Colosseum smart contract and associated validator and miner clients are live on mainnet. The Rock-Paper-Scissors (RPS) tournament is currently operational, enabling miners to participate in timed match-based games. Upcoming modules listed on the front-end include Threshold Catastrophe, Last Stander, Anti-Coordination Slots, and a Werewolf AI variant, which are slated for sequential deployment in Q2–Q3 2026.
Technical Architecture
Colosseum’s architecture consists of three primary components: 1) the Solidity smart contract (`TAO_Colosseum.sol`) implementing Underdog mechanics, drand integration, and fee logic; 2) the Python package (`taocolosseum/`) containing base neuron classes, configuration constants, and validator logic (`api.py`, `contract.py`, `database.py`, `forward.py`, `reward.py`); and 3) the `validator/` entry point (`validator.py`) for weight computation and Metagraph interaction.
GitHub Repository Contents
The `tao-colosseum-subnet` repo includes: `tao-colosseum-smart-contract/contracts/TAO_Colosseum.sol`, `taocolosseum/` Python package, `validator/validator.py`, `docs/` guides, and testing scripts. Developers can fork, modify game parameters, or extend validator logic. The `.env.example`, `requirements.txt`, and `Dockerfile` facilitate local setup and Dockerized deployment.
Key Metrics
The repository has 31 commits, 1 contributor (`taopleb Pleb`), and currently 0 stars, reflecting a nascent but focused project. On TAO.app, Colosseum’s alpha token trades at τ 0.01198 (~$3.42), with a circulating supply of 61.92K α and an emission rate of 0.53% per epoch. Daily trading volume is ~318.85K τ, indicating active market interest.
Validator Scoring Mechanism
Validator scoring employs an exponential time decay over a 7-day window: weights are 1.00 (today), 0.85 (1 day ago), …, 0.10 (6 days ago). This ensures recent wagering activity has greater impact on reward allocation. Scores are computed off-chain, then submitted to the Metagraph during each `set_weights` transaction.
APIs and Integration Points
The validator exposes a REST API (`/health`, `/scores`, `/volumes`, `/leaderboard`, `/snapshots`, `/api/wallet-mapping`), enabling external dashboards, front-ends, or analytics bots to query real-time state. A wallet-mapping endpoint allows coldkey → EVM address registration, ensuring correct reward attribution. This API runs on port 8000 by default and is documented in `http://localhost:8000/docs`.
Core Contributors
The TAO Colosseum subnet is developed and maintained by the TAO-Colosseum team, currently represented on GitHub by a single contributor under the pseudonym `taopleb Pleb`. This contributor authored core smart contracts, Python validator logic, and documentation, demonstrating expertise in blockchain smart contract development and Python system design.
Coldkey Ownership
On chain, Subnet 38’s `coldkey` owner is identified as `5CaHK..mBqp`, with `hotkey` `5DDDD..oi3v`, indicating a distinct ECDSA key pair dedicated to validator operations. Coldkeys sign weight update transactions, anchoring the protocol’s governance and reward distribution security.
Background and Expertise
While public biographical details are limited, the TAO-Colosseum team demonstrates strong backgrounds in decentralized application development, evidenced by the integration of verifiable on-chain randomness (`drand`), advanced validator APIs, and seamless Bittensor Metagraph interaction. The repository adheres to best practices like OpenZeppelin’s `ReentrancyGuard`, `Ownable`, and comprehensive test coverage.
Community Engagement and Partnerships
Community channels for subnet discussion occur on the broader Bittensor Discord (`https://discord.gg/bittensor`), where subnet-specific threads engage users on setup, bug reports, and feature requests. No dedicated Telegram or Twitter channel exists; project announcements appear in Bittensor ecosystem update forums and on TAO.app’s “Social” section. Feedback is actively incorporated via GitHub Issues and community code reviews.
Core Contributors
The TAO Colosseum subnet is developed and maintained by the TAO-Colosseum team, currently represented on GitHub by a single contributor under the pseudonym `taopleb Pleb`. This contributor authored core smart contracts, Python validator logic, and documentation, demonstrating expertise in blockchain smart contract development and Python system design.
Coldkey Ownership
On chain, Subnet 38’s `coldkey` owner is identified as `5CaHK..mBqp`, with `hotkey` `5DDDD..oi3v`, indicating a distinct ECDSA key pair dedicated to validator operations. Coldkeys sign weight update transactions, anchoring the protocol’s governance and reward distribution security.
Background and Expertise
While public biographical details are limited, the TAO-Colosseum team demonstrates strong backgrounds in decentralized application development, evidenced by the integration of verifiable on-chain randomness (`drand`), advanced validator APIs, and seamless Bittensor Metagraph interaction. The repository adheres to best practices like OpenZeppelin’s `ReentrancyGuard`, `Ownable`, and comprehensive test coverage.
Community Engagement and Partnerships
Community channels for subnet discussion occur on the broader Bittensor Discord (`https://discord.gg/bittensor`), where subnet-specific threads engage users on setup, bug reports, and feature requests. No dedicated Telegram or Twitter channel exists; project announcements appear in Bittensor ecosystem update forums and on TAO.app’s “Social” section. Feedback is actively incorporated via GitHub Issues and community code reviews.
Phase 1: Core Betting Protocol and RPS Tournament (Q1 2026)
Delivered: Solidity smart contract implementing the Underdog game, drand-based randomness, validator logic for time-decay scoring, and the RPS (Rock-Paper-Scissors) tournament front-end. Mainnet launch completed, with first weight update on May 12, 2026.
Phase 2: New Game Modes (Q2 2026)
In Progress: Deployment of Threshold Catastrophe, a minimal-participants betting game; Last Stander, a survivor-style tournament; and Anti-Coordination Slots to encourage multi-position strategies. Smart contracts are being audited, UI components under development, with testnet release scheduled for June 2026.
Phase 3: Werewolf AI Integration (Q3 2026)
Planned: A social-deduction “Werewolf AI” game leveraging LLM-powered narrators for dynamic game moderation. Validator updates will incorporate AI-driven dispute resolution and automated randomization. Research and prototype phase underway, with community design calls in April 2026.
Phase 4: Cross-Subnet Interoperability (Late 2026)
Vision: Enable betting markets spanning multiple Bittensor subnets, allowing users to stake on outcomes across platform subnets. Development of a cross-subnet oracle layer and unified reward distribution framework is anticipated.
Long-Term Vision
Colosseum aims to become a modular gaming and prediction infrastructure on Bittensor, supporting diverse on-chain game mechanics, integrating decentralized AI oracles, and providing rentable compute/reward marketplaces. Future features include user-customizable game templates, liquidity pools for instant settlement, and NFT-backed leaderboards.
Recent Updates
The most recent GitHub release candidate (v0.8.0-rc) includes multi-token support, front-end localization, and an enhanced REST API for real-time analytics. Community calls occur biweekly, with a developer hackathon planned for April 2026 to expand game modules.
Phase 1: Core Betting Protocol and RPS Tournament (Q1 2026)
Delivered: Solidity smart contract implementing the Underdog game, drand-based randomness, validator logic for time-decay scoring, and the RPS (Rock-Paper-Scissors) tournament front-end. Mainnet launch completed, with first weight update on May 12, 2026.
Phase 2: New Game Modes (Q2 2026)
In Progress: Deployment of Threshold Catastrophe, a minimal-participants betting game; Last Stander, a survivor-style tournament; and Anti-Coordination Slots to encourage multi-position strategies. Smart contracts are being audited, UI components under development, with testnet release scheduled for June 2026.
Phase 3: Werewolf AI Integration (Q3 2026)
Planned: A social-deduction “Werewolf AI” game leveraging LLM-powered narrators for dynamic game moderation. Validator updates will incorporate AI-driven dispute resolution and automated randomization. Research and prototype phase underway, with community design calls in April 2026.
Phase 4: Cross-Subnet Interoperability (Late 2026)
Vision: Enable betting markets spanning multiple Bittensor subnets, allowing users to stake on outcomes across platform subnets. Development of a cross-subnet oracle layer and unified reward distribution framework is anticipated.
Long-Term Vision
Colosseum aims to become a modular gaming and prediction infrastructure on Bittensor, supporting diverse on-chain game mechanics, integrating decentralized AI oracles, and providing rentable compute/reward marketplaces. Future features include user-customizable game templates, liquidity pools for instant settlement, and NFT-backed leaderboards.
Recent Updates
The most recent GitHub release candidate (v0.8.0-rc) includes multi-token support, front-end localization, and an enhanced REST API for real-time analytics. Community calls occur biweekly, with a developer hackathon planned for April 2026 to expand game modules.