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
Overview
GroundLayer (Subnet 20) is a specialized Bittensor subnet that orchestrates a decentralized, competition-driven environment for evaluating and rewarding fine-tuned tool-calling language models (LLMs). Originally launched as BitAgent and later rebranded to Bounty Hunter, SN20 now operates under the GroundLayer banner, integrating on-chain governance and economic incentives to solve the core problem of trustless, transparent AI model benchmarking and rewarding within the Bittensor ecosystem.
Subnet Architecture and Consensus
As a first-class Bittensor subnet, GroundLayer adheres to the network’s Yuma Consensus interface, engaging miners and validators in a cyclical loop. Miners register their wallets and submit fine-tuned LLMs as on-chain neurons, while validators independently instantiate each submission in an offline environment to execute standardized task evaluations. Upon completion, validators publish performance metrics to the metagraph, enabling on-chain scoring and reward issuance.
Miner Operations
Participants wishing to mine SN20 begin by fine-tuning an 8-billion-parameter (or smaller) LLM for tool-calling tasks, often leveraging datasets from the Berkeley Function Calling Leaderboard (BFCL). After cloning the bitagent_subnet repository and installing dependencies, a miner registers via the Bittensor CLI: “btcli subnet register –subtensor.network finney –netuid 20”. Once live, miners submit their model names and await validator-driven BFCL evaluations in both single-turn and multi-turn modes.
Validator Responsibilities
Validators in SN20 must provision high-VRAM servers (minimum 48 GB per GPU) and install the BFCL evaluation suite. Using PM2 and vllm, validators automatically fetch submitted models from Hugging Face, spawn isolated evaluation servers, and run offline task batches. They record scores reflecting accuracy and generality, then aggregate these into moving averages on the Bittensor blockchain. Validator performance underpins the network’s trustworthiness and ensures unbiased reward distribution.
Output and End Product
The end product of SN20 is a continuously updated, on-chain leaderboard of tool-calling LLM submissions, accompanied by tokenized rewards distributed as dTAO (subnet tokens). Miners’ scores translate directly into emissions, fostering a transparent market where high-performing models capture greater share of the reward pool. Consumers and researchers gain access to state-of-the-art function-calling models validated under identical conditions, all without centralized intermediaries.
Incentive Mechanism
GroundLayer emissions follow a custom scoring split: 80 % of a miner’s score derives from evaluation accuracy (50 % single-turn, 50 % multi-turn), while 20 % stems from model longevity—assessing persistent performance across up to ten successive datasets. Rewards are minted per block at a subnet emission rate of 0.76 %, with a configurable root proportion directed to the subnet owner’s coldkey (18.3 %) and the remainder allocated among miners proportional to their scores.
Comparison to Centralized Alternatives
Unlike centralized leaderboards and proprietary API services—where model evaluation pipelines are opaque and outcomes can be altered—GroundLayer leverages Bittensor’s decentralized ledger to guarantee auditability, permissionless participation, and on-chain enforcement of rules. This architecture mitigates trust assumptions, aligns stakeholder incentives, and democratizes access to AI benchmarking beyond siloed corporate platforms.
Overview
GroundLayer (Subnet 20) is a specialized Bittensor subnet that orchestrates a decentralized, competition-driven environment for evaluating and rewarding fine-tuned tool-calling language models (LLMs). Originally launched as BitAgent and later rebranded to Bounty Hunter, SN20 now operates under the GroundLayer banner, integrating on-chain governance and economic incentives to solve the core problem of trustless, transparent AI model benchmarking and rewarding within the Bittensor ecosystem.
Subnet Architecture and Consensus
As a first-class Bittensor subnet, GroundLayer adheres to the network’s Yuma Consensus interface, engaging miners and validators in a cyclical loop. Miners register their wallets and submit fine-tuned LLMs as on-chain neurons, while validators independently instantiate each submission in an offline environment to execute standardized task evaluations. Upon completion, validators publish performance metrics to the metagraph, enabling on-chain scoring and reward issuance.
Miner Operations
Participants wishing to mine SN20 begin by fine-tuning an 8-billion-parameter (or smaller) LLM for tool-calling tasks, often leveraging datasets from the Berkeley Function Calling Leaderboard (BFCL). After cloning the bitagent_subnet repository and installing dependencies, a miner registers via the Bittensor CLI: “btcli subnet register –subtensor.network finney –netuid 20”. Once live, miners submit their model names and await validator-driven BFCL evaluations in both single-turn and multi-turn modes.
Validator Responsibilities
Validators in SN20 must provision high-VRAM servers (minimum 48 GB per GPU) and install the BFCL evaluation suite. Using PM2 and vllm, validators automatically fetch submitted models from Hugging Face, spawn isolated evaluation servers, and run offline task batches. They record scores reflecting accuracy and generality, then aggregate these into moving averages on the Bittensor blockchain. Validator performance underpins the network’s trustworthiness and ensures unbiased reward distribution.
Output and End Product
The end product of SN20 is a continuously updated, on-chain leaderboard of tool-calling LLM submissions, accompanied by tokenized rewards distributed as dTAO (subnet tokens). Miners’ scores translate directly into emissions, fostering a transparent market where high-performing models capture greater share of the reward pool. Consumers and researchers gain access to state-of-the-art function-calling models validated under identical conditions, all without centralized intermediaries.
Incentive Mechanism
GroundLayer emissions follow a custom scoring split: 80 % of a miner’s score derives from evaluation accuracy (50 % single-turn, 50 % multi-turn), while 20 % stems from model longevity—assessing persistent performance across up to ten successive datasets. Rewards are minted per block at a subnet emission rate of 0.76 %, with a configurable root proportion directed to the subnet owner’s coldkey (18.3 %) and the remainder allocated among miners proportional to their scores.
Comparison to Centralized Alternatives
Unlike centralized leaderboards and proprietary API services—where model evaluation pipelines are opaque and outcomes can be altered—GroundLayer leverages Bittensor’s decentralized ledger to guarantee auditability, permissionless participation, and on-chain enforcement of rules. This architecture mitigates trust assumptions, aligns stakeholder incentives, and democratizes access to AI benchmarking beyond siloed corporate platforms.
Live Components vs. In Development
The core SN20 infrastructure is live and actively processing submissions. The bitagent_subnet GitHub repository contains all production-ready miner and validator code, while the GroundLayer OTC capital-market protocol is currently pre-launch, with early access registration open on groundlayer.xyz.
Technical Architecture
At its core, SN20 comprises two neuron types: miner neurons that submit fine-tuned LLMs for evaluation, and validator neurons that execute BFCL task suites in isolation. The system uses Bittensor’s axon/dendrite networking for model exchange, PM2 process managers for service orchestration, and vllm for high-throughput inference during offline evaluation. All on-chain interactions leverage the bittensor Python SDK and the btcli command-line tool.
GitHub Repository Structure
The RogueTensor/bitagent_subnet repo, generated from opentensor/bittensor-subnet-template, comprises: .circleci for CI workflows, common libraries, contrib utilities, docs folder with markdown guides, neurons directory for miner.py and validator.py, scripts including register.sh and setup_and_run.sh, tests suites, and configuration files like min_compute.yml, requirements.txt, run.sh, and setup.py. Developers can extend the subnet by modifying hyperparameters, swapping out BFCL versions, or integrating new tool-calling datasets.
Key Metrics
As of March 23, 2026, the bitagent_subnet repository has 22 stars and 32 forks, with over 1 054 commits reflecting active maintenance and feature growth. On-chain, SN20 shows a circulating token supply of 1.88 million dTAO (9 % of total), total issuance of 4.30 million dTAO (20.5 % issuance), a 24 h trading volume of 159 TAO, and a liquidity pool containing 8.56 k TAO and 1.88 million α units for seamless staking and trading.
Validator Scoring Mechanism
SN20 uses a bespoke scoring formula: 80 % of a miner’s score is derived from evaluation performance (split evenly between single-turn and multi-turn BFCL tasks), and 20 % from model longevity across the last ten datasets. Validators compute and submit moving average scores to the metagraph, ensuring equitable reward distribution and continuous adaptation to new task sets.
APIs, SDKs, and Integration Points
Developers can interact with SN20 via the Bittensor CLI (btcli), Python SDK, or directly through wRPC APIs exposed by bittensor-neurons. Additional tooling includes the Taostats API for real-time network analytics, and integration guides in docs.learnbittensor.org for hyperparameter tuning and on-chain governance interactions.
Live Components vs. In Development
The core SN20 infrastructure is live and actively processing submissions. The bitagent_subnet GitHub repository contains all production-ready miner and validator code, while the GroundLayer OTC capital-market protocol is currently pre-launch, with early access registration open on groundlayer.xyz.
Technical Architecture
At its core, SN20 comprises two neuron types: miner neurons that submit fine-tuned LLMs for evaluation, and validator neurons that execute BFCL task suites in isolation. The system uses Bittensor’s axon/dendrite networking for model exchange, PM2 process managers for service orchestration, and vllm for high-throughput inference during offline evaluation. All on-chain interactions leverage the bittensor Python SDK and the btcli command-line tool.
GitHub Repository Structure
The RogueTensor/bitagent_subnet repo, generated from opentensor/bittensor-subnet-template, comprises: .circleci for CI workflows, common libraries, contrib utilities, docs folder with markdown guides, neurons directory for miner.py and validator.py, scripts including register.sh and setup_and_run.sh, tests suites, and configuration files like min_compute.yml, requirements.txt, run.sh, and setup.py. Developers can extend the subnet by modifying hyperparameters, swapping out BFCL versions, or integrating new tool-calling datasets.
Key Metrics
As of March 23, 2026, the bitagent_subnet repository has 22 stars and 32 forks, with over 1 054 commits reflecting active maintenance and feature growth. On-chain, SN20 shows a circulating token supply of 1.88 million dTAO (9 % of total), total issuance of 4.30 million dTAO (20.5 % issuance), a 24 h trading volume of 159 TAO, and a liquidity pool containing 8.56 k TAO and 1.88 million α units for seamless staking and trading.
Validator Scoring Mechanism
SN20 uses a bespoke scoring formula: 80 % of a miner’s score is derived from evaluation performance (split evenly between single-turn and multi-turn BFCL tasks), and 20 % from model longevity across the last ten datasets. Validators compute and submit moving average scores to the metagraph, ensuring equitable reward distribution and continuous adaptation to new task sets.
APIs, SDKs, and Integration Points
Developers can interact with SN20 via the Bittensor CLI (btcli), Python SDK, or directly through wRPC APIs exposed by bittensor-neurons. Additional tooling includes the Taostats API for real-time network analytics, and integration guides in docs.learnbittensor.org for hyperparameter tuning and on-chain governance interactions.
Core Contributors
The SN20 subnet is developed and maintained by RogueTensor (GitHub handle RogueTensor) in collaboration with core Bittensor contributors, including Yuma Rao, the original architect of the subnet‐framework, as noted in the MIT license headers. The primary codebase has seen contributions from multiple engineers across .circleci, common, and neurons modules, evidencing a transparent open-source development model.
Validator Team – Team Rizzo AI
Validation and community coordination are handled by Team Rizzo AI, a Bittensor validator collective operating under the coldkey 5Fuzg…krzo. They maintain an active X account (@TeamRizzoAI) and Discord channels for miner support. Team Rizzo AI joined the Bittensor ecosystem in December 2024 and has since stewarded SN20 through its transitions from BitAgent to Bounty Hunter, and now GroundLayer.
Downstream Applications and Partnerships
SN20 serves as the backbone for applications like GoGoAgent and MSP Tech, showcasing real-world deployments of tool-calling LLMs. These partnerships exemplify the subnet’s utility beyond core benchmarking, extending into automated workflow agents and business process AI.
Name and Branding History
Originally launched as BitAgent in mid-2024 to pioneer decentralized tool calling, SN20 was rebranded to Bounty Hunter following its first #1 ranking on the BFCL leaderboard. In early 2026, the project unified under the GroundLayer protocol name to reflect its expanded role as a capital-market infrastructure layer for Bittensor subnet tokens.
Core Contributors
The SN20 subnet is developed and maintained by RogueTensor (GitHub handle RogueTensor) in collaboration with core Bittensor contributors, including Yuma Rao, the original architect of the subnet‐framework, as noted in the MIT license headers. The primary codebase has seen contributions from multiple engineers across .circleci, common, and neurons modules, evidencing a transparent open-source development model.
Validator Team – Team Rizzo AI
Validation and community coordination are handled by Team Rizzo AI, a Bittensor validator collective operating under the coldkey 5Fuzg…krzo. They maintain an active X account (@TeamRizzoAI) and Discord channels for miner support. Team Rizzo AI joined the Bittensor ecosystem in December 2024 and has since stewarded SN20 through its transitions from BitAgent to Bounty Hunter, and now GroundLayer.
Downstream Applications and Partnerships
SN20 serves as the backbone for applications like GoGoAgent and MSP Tech, showcasing real-world deployments of tool-calling LLMs. These partnerships exemplify the subnet’s utility beyond core benchmarking, extending into automated workflow agents and business process AI.
Name and Branding History
Originally launched as BitAgent in mid-2024 to pioneer decentralized tool calling, SN20 was rebranded to Bounty Hunter following its first #1 ranking on the BFCL leaderboard. In early 2026, the project unified under the GroundLayer protocol name to reflect its expanded role as a capital-market infrastructure layer for Bittensor subnet tokens.
Phase 1 – Marketplace Launch (Q2 2026)
GroundLayer’s initial rollout will deploy the on-chain OTC marketplace for structured deals. Subnet owners (sellers) will define deal parameters—discounts, lockup schedules, and caps—while fund managers (miners) commit TAO into smart contracts to secure allocations. This feature enables SN20 mining emissions to scale with locked AUM, avoiding disruptive spot sales.
Phase 2 – Subnet Indices (Q2 2026)
Following the marketplace launch, GroundLayer will introduce subnet indices—bundled allocations across multiple subnet tokens. Fund managers can diversify capital deployment through index products, simplifying portfolio management and aligning incentives across high-potential subnets.
Phase 3 – Investor Allocation (Q3 2026)
With a proven track record of manager performance, the protocol will onboard direct investors. This phase unlocks new user roles, enabling passive capital contributions into manager-managed pools or index products based on transparent performance metrics and fee structures.
Phase 4 – TAO and USDC Rails (Q4 2026+)
To broaden accessibility, GroundLayer will integrate USDC funding rails alongside native TAO, permitting deals to be denominated in stablecoins. This enhancement reduces fiat-on-ramp friction for institutional participants while maintaining on-chain settlement guarantees.
Phase 5 – Beyond Bittensor (Early 2027)
Looking forward, GroundLayer aims to extend its structured capital marketplace to non-TAO assets and external chains, creating cross-protocol deal sourcing and liquidity channels. All value flows will circle back to SN20 token holders, cementing GroundLayer’s position as the foundational capital layer for decentralized AI ecosystems.
Phase 1 – Marketplace Launch (Q2 2026)
GroundLayer’s initial rollout will deploy the on-chain OTC marketplace for structured deals. Subnet owners (sellers) will define deal parameters—discounts, lockup schedules, and caps—while fund managers (miners) commit TAO into smart contracts to secure allocations. This feature enables SN20 mining emissions to scale with locked AUM, avoiding disruptive spot sales.
Phase 2 – Subnet Indices (Q2 2026)
Following the marketplace launch, GroundLayer will introduce subnet indices—bundled allocations across multiple subnet tokens. Fund managers can diversify capital deployment through index products, simplifying portfolio management and aligning incentives across high-potential subnets.
Phase 3 – Investor Allocation (Q3 2026)
With a proven track record of manager performance, the protocol will onboard direct investors. This phase unlocks new user roles, enabling passive capital contributions into manager-managed pools or index products based on transparent performance metrics and fee structures.
Phase 4 – TAO and USDC Rails (Q4 2026+)
To broaden accessibility, GroundLayer will integrate USDC funding rails alongside native TAO, permitting deals to be denominated in stablecoins. This enhancement reduces fiat-on-ramp friction for institutional participants while maintaining on-chain settlement guarantees.
Phase 5 – Beyond Bittensor (Early 2027)
Looking forward, GroundLayer aims to extend its structured capital marketplace to non-TAO assets and external chains, creating cross-protocol deal sourcing and liquidity channels. All value flows will circle back to SN20 token holders, cementing GroundLayer’s position as the foundational capital layer for decentralized AI ecosystems.