MetaTensor Proposal

Bittensor Governance & Efficiency Optimizer Subnet


0. Executive Summary

MetaTensor is a Bittensor subnet whose primary "user" is the Bittensor protocol and ecosystem itself. It continuously analyzes on-chain, network, and subnet-level data to produce governance-grade insights and recommendations: which subnets are healthy or risky, how emissions could be better allocated, where collusion or centralization might be emerging, and what parameter changes would most improve efficiency and decentralization.

Miners build analytical and predictive models over Bittensor and external blockchain data, while validators curate tasks, score models, and expose a stable API of recommendations and alerts to governance actors, explorers, and tooling. The subnet's design turns long-term network health into a measurable "digital commodity" that can be rewarded automatically through TAO emissions.


1. Subnet Overview

1.1 Vision

Vision:
Make Bittensor the most transparent, data-driven, and self-optimizing AI network by providing a continuous stream of objective, AI-generated intelligence about its own health, efficiency, and risks.

Tagline:
"MetaTensor – the brain that helps Bittensor govern and optimize itself."

1.2 Core Idea and Digital Commodity

Bittensor is composed of many independent subnets that each produce a digital commodity (AI inference, training, financial signals, etc.), with miners producing and validators evaluating the commodity. Emissions of TAO are distributed across subnets and participants based on perceived value.

MetaTensor's digital commodity includes:

These outputs are consumed by:

The subnet does not directly change L1 code or consensus. Instead, it produces high-quality, constantly updated information and recommendations that governance and tooling can choose to adopt.


2. Incentive & Mechanism Design

2.1 Design Goals

The mechanism design aims to:

2.2 Emission and Reward Logic

Let Et be the TAO emitted to MetaTensor during epoch t. In line with the general Bittensor subnet pattern, this emission is split between miners and validators.

2.2.1 Miner Reward Allocation

Each epoch, validators compute a normalized performance score si ∈ [0,1] for each miner i. This score reflects:

Rewards are distributed using a softmax-style weighting over scores:
wi = exp(βsi) / Σj exp(βsj)
Ri = wi · αEt

Where β > 0 controls how sharply rewards focus on top performers (higher β → more competitive, winner-takes-most dynamics). Miners with very low scores (below a threshold τ) can be zeroed out.

2.2.2 Validator Reward Allocation

Validators receive rewards based on:

2.3 Mechanisms to Discourage Low-Quality or Adversarial Behavior

  1. Score thresholds and baselines: Validators maintain baseline models/heuristics as a minimal standard. Miners whose performance does not significantly improve on baselines receive zero or negligible rewards.
  2. Sentinel tasks: Validators inject special hidden-label tasks that test for trivial or plagiarized behavior. Miners repeatedly failing sentinel tasks can be flagged and excluded.
  3. Cross-validator consensus checks: For each miner and task, compare scores across validators. Large systematic deviations can indicate a malicious or colluding validator.
  4. Time-based performance windows: Use rolling windows (e.g., last 30 epochs) to smooth one-off lucky predictions. This makes consistent quality more important than intermittent spikes.

2.4 Proof of Intelligence / Effort

MetaTensor qualifies as proof of intelligence/effort because:


3. High-Level Algorithm (Task → Reward)

3.1 Task Lifecycle

  1. Data ingestion: Validators and some miners ingest network data (on-chain events, subnet metrics, external blockchain data).
  2. Task generation (validators): Validators formulate evaluation tasks grouped into categories: Health scoring, Emission optimization, Anomaly/collusion detection, Comparative benchmarking.
  3. Task broadcast: Validators publish tasks to miners via the standard subnet protocol.
  4. Miner inference: Miners receive tasks, run their models, and submit structured responses.
  5. Scoring (validators): For tasks with delayed ground truth, validators maintain a score buffer. For tasks with synthetic ground truth, score directly.
  6. Score aggregation and consensus: Validators aggregate task-level scores into per-miner scores using normalized metrics and robust statistics.
  7. Reward computation: Apply the emission formula to compute miner and validator rewards.
  8. Publication & API: Validators publish MetaTensor outputs via public API endpoints, explorers, dashboards, and governance reports.

3.2 Flow Description

The flow follows this sequence:

  1. Bittensor Network Data → MetaTensor Validators (Task Generator)
  2. Validators → Miners (Tasks in JSON format)
  3. Miners → Validators (Predictions & Recommendations)
  4. Validators → Subtensor (Scores → TAO Rewards)
  5. Validators → Governance & Dashboards (Health Scores, Alerts, Recommendations)

4. Miner Design

4.1 Miner Tasks

MetaTensor miners are specialized analysts/agents. They cover several task families:

1. Subnet Health Scoring

2. Emission Optimization Proposals

3. Collusion & Centralization Detection

4. Comparative Chain Metrics

4.2 Input and Output Formats

Tasks and responses use JSON format. Example for subnet health scoring:

{
  "task_type": "subnet_health_scoring",
  "epoch_window": "2026-01-01_to_2026-02-01",
  "subnets": [{"id": 31, "age_epochs": 1234, "emission_share": 0.015, ...}]
}

Miner response:

{
  "epoch_window": "2026-01-01_to_2026-02-01",
  "subnet_scores": [{"id": 31, "risk_score": 0.18, "category": "under_rewarded", ...}],
  "model_version": "metaminer_v1.3"
}

4.3 Performance Dimensions

The performance of a MetaTensor miner's analytical agent is evaluated across several key dimensions, which collectively determine its overall score and ranking within the subnet.

Performance Dimension Description How It Is Measured
Prediction Accuracy The miner's ability to correctly predict subnet health risks, emission efficiency, and detect emerging problems before they become obvious. This is the primary measure of success. Backtested AUC/ROC over 30-day rolling windows: correlation between predicted risk scores and actual outcomes (deregistrations, performance drops, governance flags). Higher AUC = better foresight.
Recommendation Quality The miner's ability to propose emission weight adjustments and parameter changes that would genuinely improve network efficiency if adopted. Simulated utility gain: Run miner's proposed emission weights through a network simulator vs current weights. Score = % improvement in decentralization + total value captured by high-performing subnets.
Anomaly Detection The miner's ability to identify collusion, centralization risks, and unusual stake/emission patterns early. Precision/Recall on sentinel tasks: Validators inject synthetic anomalies (fake stake concentration, validator cartels). Miners scored on detection rate vs false positives. F1-score used.
Robustness The miner's consistency across different network conditions, subnet types, and time horizons (short-term vs long-term predictions). Variance penalty: Coefficient of variation across 100+ subnets and 7-day rolling performance. Lower variance = more reliable across market conditions.
Timeliness The miner's ability to react quickly to sudden network changes (new subnets, stake shifts, emission anomalies). Response latency (seconds from task broadcast to submission) + adaptation speed (performance recovery after injecting network shocks). Weighted 20% of total score.
Explainability The quality and usefulness of the miner's rationales and feature importance for human governance actors. Human-curated bonus: Top 10% miners get +5% score boost if their JSON justifications are selected for governance dashboards (validator committee vote).

Scoring Formula

Final Score (s_i) = 0.50 × Accuracy + 0.25 × Recommendation Quality + 
                   0.15 × Anomaly Detection + 0.08 × Robustness + 
                   0.02 × Timeliness + 0.00 × Explainability (bonus)

Ultimately, the goal for a miner is to maximize Prediction Accuracy within the given constraints. The softmax reward model concentrates emissions on miners who demonstrate genuine analytical intelligence - not just surface-level statistics, but deep understanding of Bittensor's complex game-theoretic dynamics.

Miners must continuously adapt to:

This creates true "proof of intelligence" - trivial heuristics (moving averages, simple thresholds) cannot consistently beat sophisticated miners who model the full network state, stake graphs, and game-theoretic incentives.


5. Validator Design

5.1 Validator Responsibilities

Validators in MetaTensor:

5.2 Scoring and Evaluation Methodology

5.2.1 Accuracy Scoring

5.2.2 Aggregation and Normalization

Validators normalize scores into 0-1 range per task type and compute weighted aggregate:
si = Σk γk si,k

Validators share per-miner scores, and global aggregation (median or robust mean) produces final si for rewards.

5.3 Evaluation Cadence

5.4 Validator Incentive Alignment

Validator rewards incentivize:


6. Business Logic & Market Rationale

6.1 Problem Statement

As Bittensor's subnet ecosystem grows (AI training, inference, DeFi, security, etc.), it becomes increasingly difficult for governance participants to evaluate which subnets add value, for stakers to understand where to allocate capital, and for core devs to decide on parameter changes in a data-driven way.

Existing analytics are fragmented across explorers, community dashboards, and ad-hoc scripts. No single subsystem provides a continuous, AI-driven "control panel" for the whole network.

MetaTensor addresses this by making network health and optimization itself into a first-class digital commodity with clear economic incentives.

6.2 Competing Solutions

Inside Bittensor:

Outside Bittensor:

6.3 Why This Use Case Fits Bittensor

6.4 Long-term Adoption and Sustainable Business

Value creation:

Revenue and sustainability:


7. Go-to-Market Strategy

7.1 Initial Target Users and Use Cases

  1. Bittensor governance actors: Core devs, council members, large TAO holders
  2. Explorers and dashboards: Bittensor block explorers wanting richer insights
  3. Stakers, delegators, subnet teams: Use scores to understand perception

Initial focus use cases:

7.2 Distribution and Growth Channels

7.3 Incentives for Early Participation


8. Architecture Diagrams and Flows

8.1 High-Level Architecture

Layer 1: Bittensor & External Chains

Layer 2: MetaTensor Validators

Layer 3: MetaTensor Miners

Layer 4: Consumers

8.2 Detailed Task Flow

  1. Start: New Epoch t
  2. Validators ingest network data
  3. Build tasks (Yes/No) → Create health/emission/anomaly tasks → Broadcast to miners
  4. Miners compute predictions & recommendations
  5. Validators receive and validate responses
  6. Compute task-level scores
  7. Aggregate per-miner scores
  8. Compute TAO rewards via emission logic
  9. Two branches: Send rewards (on-chain), Publish scores via API/dashboard
  10. End: Epoch t complete

9. Extra Sections to Strengthen the Proposal

9.1 Security, Privacy, and Attack Considerations

9.2 Governance Integration

MetaTensor outputs are recommendations: they do not automatically change emission weights or protocol parameters. Governance processes can choose whether and how to adopt them.

9.3 Implementation Roadmap

  1. Phase 0 (Ideathon): Finalize design and mechanism spec, create mock dashboards and diagrams
  2. Phase 1 (Hackathon – Bittensor testnet): Implement minimal MetaTensor subnet with simplified data pipeline, one or two task types, basic scoring
  3. Phase 2 (Early mainnet prototype): Expand data coverage, introduce advanced miners, build public explorer web app
  4. Phase 3 (Governance integration & ecosystem partnerships): Collaborate with explorers, wallets, governance tools, run community campaigns

Task and Reward Flow

Miners Design Workflow

Miners Design Workflow

Validators Design Workflow

Validators Design Workflow

Architecture Overview

Architecture Overview

Evaluation Workflow

Evaluation Workflow
1 / 9

MetaTensor – Bittensor's Governance Brain

The first subnet that optimizes Bittensor itself

Bittensor Subnet Ideathon – Round I Submission

The Problem: No AI for Bittensor Governance

  • 128+ Bittensor subnets, but no unified governance intelligence
  • TAO emissions are not optimally aligned with subnet value
  • No early warning system for failing or malicious subnets
  • Governance actors work with fragmented, manual metrics
  • Ethereum-style governance is slow, manual, and reactive

The Solution: MetaTensor

  • First subnet that analyzes Bittensor itself
  • Continuous network health scores & risk rankings
  • AI-powered TAO emission optimization recommendations
  • Collusion & centralization detection alerts
  • Comparative efficiency metrics vs Ethereum and others

Mechanism: Miners, Validators, Rewards

Miners

  • • Ingest Bittensor + external chain data
  • • Predict subnet risk, emission efficiency, anomalies
  • • Propose new emission weights & governance signals

Validators

  • • Generate tasks and sentinel anomalies
  • • Backtest predictions vs real outcomes
  • • Score miners and expose governance API

Rewards

  • Miners: 75% of subnet emission via softmax on performance
  • Validators: 25% for honest, diverse evaluation

Proof of Intelligence / Effort

  • Miners must model time series, stake graphs, game theory
  • Backtesting over 30–90 days – can't fake long‑term accuracy
  • Sentinel tasks detect trivial heuristics and copy‑paste agents
  • Tasks include risk prediction, emission optimization, anomaly detection
  • Only miners with genuine predictive power earn meaningful TAO

Market & Users

Sector: Infra (governance & network optimization)

Primary customer: Bittensor protocol itself

Key users:

  • Governance councils & TAO voters
  • Explorers / dashboards (Taostats‑like)
  • Stakers & delegators (risk‑aware staking tools)

No existing governance subnet – pure first‑mover advantage

Why MetaTensor Wins

  • Unclaimed niche: no other subnet optimizes Bittensor governance
  • Highest leverage: optimizes the whole network, not one vertical
  • Network effects: more subnets → more value from MetaTensor
  • Makes Bittensor more adaptive than Ethereum in governance
  • Strong story for Bitstarter / discretionary investment

Go-To-Market Strategy

Phase 1 (Hackathon):

  • • Testnet subnet with basic health & anomaly tasks
  • • Public API + simple web dashboard

Phase 2 (Mainnet):

  • • Integration with explorers, wallets, governance tools
  • • "MetaTensor score" shown for every subnet & address

Bootstrapping:

  • • Higher miner share initially
  • • Early validator bonuses
  • • Free API tier for ecosystem projects

Roadmap

Now – Feb 28: Ideathon – design + proposal + repo (this deck + site)

Mar 2 – Mar 30: Hackathon – testnet implementation of core tasks

Q2 2026: Mainnet launch, explorer integration, governance trial

Q3+ 2026: Become default governance signal layer for Bittensor