MANTIS
A Decentralized Quantitative Signal Network
Bittensor Subnet 123
──────────
Abstract
Quantitative funds produce returns by hiring researchers, each discovering small, partially independent edges, and combining their signals into portfolios no single researcher could construct alone.
MANTIS replicates this structure as a permissionless Bittensor subnet. Miners submit sealed forecasts across multiple challenge types and asset classes.
Validators measure each miner's marginal contribution to ensemble accuracy using walk-forward scoring, then set on-chain weights proportional to that contribution.
The result is a decentralized quant shop where anyone with a registered hotkey and a prediction model can contribute signal, and where all evaluation is cryptographically auditable.
Thesis
The largest quantitative firms:
Citadel, Millennium, Point72, Balyasny run hundreds of semi-autonomous portfolio managers. Each PM finds a sliver of edge.
The firm's value is not in any single PM's alpha but in the aggregation infrastructure, and talent aqquisition.
MANTIS implements this same structure on Bittensor. The subnet replaces PMs with miners, replaces the firm's proprietary aggregation with an open scoring protocol, and replaces the fund's capital allocation with Bittensor's emissions.
A decentralized, permissionless version of multi-manager fund architecture, eliminating the barriers to entry that restrict participation in traditional quant shops.
Why Ensembles Work
Condorcet observed in 1785 that if you poll many people who are each slightly better than chance, the group decision converges toward certainty as the group grows. The mechanism is noise averaging.
Each forecaster's prediction is part signal, part noise. When you combine many forecasters, the signal reinforces while the noise partially cancels. The more independent the noise across forecasters, the more cancellation you get.
Two things determine how far this can go: how accurate each individual forecaster is, and how correlated their errors are. Individual accuracy sets the signal.
Error correlation sets the floor, the point beyond which adding more forecasters stops helping because everyone is wrong in the same way, at the same time.
Past a modest number of forecasters, the primary lever is not adding more participants --- it is reducing the correlation between where they make errors.
A miner who finds a genuinely different source of predictive information, even with moderate standalone accuracy, is worth more to the network than a miner who replicates the best existing signal at higher accuracy. The scoring protocol rewards this directly.
A decentralized network produces exactly the kind of orthogonality the math requires. Each participant independently selects features, model architectures, data sources, and trading hypotheses.
One miner may use fractal dimension analysis on tick data. Another may build hidden Markov regime detectors.
A third may exploit cross-exchange microstructure imbalances. The resulting feature spaces reflect genuinely different lines of quantitative inquiry --- the same reason multi-PM funds outperform single-PM funds with larger teams.
System Architecture
Miners register hotkeys, receive challenge specifications, and submit encrypted forecast vectors at regular block intervals.
Validators decrypt matured payloads, evaluate predictions against realized outcomes, compute per-miner contribution scores, and set on-chain weights.
Lifecycle of a Prediction
Price observation. Validators fetch current prices for all tracked assets and record them alongside the current block number.
Miner submission. Miners compute forecast vectors for each active challenge and submit a single encrypted payload containing predictions across all challenges.
Sealing. Predictions are dual-encrypted before submission. No party other than the subnet owner can observe a miner's prediction before the maturation window closes.
Decryption. After the maturation period, validators retrieve the relevant Drand beacon signature, decrypt payloads, verify binding hashes, and validate submission structure.
Scoring. Validators stream training data and compute per-miner salience scores for each challenge using walk-forward evaluation with embargo periods.
Weight setting. Per-challenge salience scores are normalized, weighted by challenge importance, and aggregated into a single weight vector set on-chain.
Assets
The subnet tracks assets across crypto, forex, and metals. Multi-asset challenges operate across universes of 20--33 assets simultaneously, spanning BTC, ETH, SOL, XRP, and dozens of additional crypto assets alongside forex pairs (CADUSD, NZDUSD, CHFUSD) and metals (XAGUSD).
Encryption
Prediction integrity is the foundational requirement. If any party can observe a miner's prediction before the outcome is determined, the system is vulnerable to front-running, copying, and selective revelation. MANTIS enforces this through dual-path encryption.
Owner path. X25519 ECDH key agreement between a miner ephemeral keypair and the owner public key derives a shared secret that wraps a ChaCha20-Poly1305 symmetric key. The owner can decrypt immediately for trading.
Timelock path. The ephemeral private key and symmetric key are encrypted via Drand identity-based encryption (BLS12-381) to a future beacon round. After the round passes, anyone --- including validators --- can decrypt and audit.
Binding hash. SHA-256 over the hotkey, round number, owner public key, and ephemeral public key serves as authenticated associated data for both paths, making replay, relay, substitution, and selective reveal cryptographically impossible.
Nobody except the owner can see a miner's prediction before the maturation window closes. Predictions that fail any verification step are recorded as zero vectors and receive no weight.
──────────
Challenge Types
MANTIS operates multiple challenge types in parallel. Each targets a different forecasting problem, is scored independently, and contributes to aggregate miner weights via a configurable weighted sum.
Binary Directional Prediction
Predict whether the 1-hour forward return will be positive or negative. Assets include ETH, CADUSD, NZDUSD, CHFUSD, XAGUSD. Walk-forward ElasticNet meta-model on out-of-sample base-model predictions. L2 splits weight among correlated miners; L1 drives noise to zero.
Volatility Regime Classification
Classify forward price moves into five volatility regimes at z-scored thresholds. ETH (1-hour) and BTC (6-hour). Miners submit class probabilities and quantile path estimates. Scoring blends per-class logistic regressions with quantile path models.
Barrier-Hit Prediction
Given current price and sigma-scaled barriers, predict which direction breaches first (up, down, or neither). ETH. L2 logistic regression with coefficient magnitude as importance.
Multi-Asset Range Breakout
A state machine tracks rolling 4-day price ranges per asset, detects breakouts, and sets continuation/reversal barriers. Miners predict whether a breakout will continue or reverse across 33 crypto assets simultaneously. This is the highest-weighted challenge operating across 33 assets generates large sample counts, making statistical evaluation robust. Scoring uses L2 logistic regression on z-scored predictions with episode-balanced weighting and cross-miner correlation penalties.
Cross-Sectional Asset Ranking
Predict which of 33 assets will outperform the cross-sectional median return. Reformulated as binary classification pooled across all assets, yielding 33x the effective sample count. Produces signals that are close to market-neutral by construction.
Funding Rate Cross-Section
Predict which of 20 assets' funding rates will change more than the cross-sectional median. Same pooled binary structure as cross-sectional ranking, but targeting asset-specific funding deviations. Using changes rather than levels destroys the high autocorrelation in funding rate levels.
Scoring and Weight Setting
Walk-Forward Evaluation
Scoring uses strict walk-forward temporal separation when needed. Training data precedes an embargo period, which precedes the evaluation window. No future information enters any model that evaluates past predictions. This is the actual scoring logic running in production on predictions that were encrypted and sealed before the outcome was known.
The Meta-Model
Key properties:
Sybil resistance. L2 regularization splits coefficients among identical miners. If n miners submit the same predictions, each receives roughly 1/n of the weight a single miner would receive. Cloning is unprofitable.
Noise elimination. L1 penalty drives zero-information miners to exactly zero weight.
Temporal weighting. Exponential recency weighting adapts to changing miner quality.
Top-K pruning. Only the highest-importance miners are retained, with rank decay concentrating rewards on the most valuable contributors.
Aggregation
Each challenge carries a configurable weight. Per-challenge salience scores are normalized, multiplied by challenge weight, and averaged to produce a single per-miner weight vector that determines emission share. New miners receive a small fixed allocation while ramping up. A fixed percentage of emissions is burned via UID 0 to reduce sell pressure.
Anti-Adversarial Design
The scoring system has been iteratively hardened against adversarial behaviors observed in live operation.
Copy prevention. The encryption protocol makes direct copying cryptographically impossible. Post-maturation statistical copying is addressed by the uniqueness penalty and L2 coefficient splitting.
Sybil resistance. L2 regularization ensures identical or near-identical miners collectively earn less than a single miner producing the same signal. The uniqueness penalty provides a secondary defense layer.
Revenue Path
The MANTIS thesis is that a decentralized network of forecasters, properly scored and combined, produces tradeable signal. The revenue model follows directly.
Proprietary trading. The owner decrypts predictions immediately via the owner encryption path, before any other party has access. The owner runs an account on a proprietary trading firm. Executing positions based on the ensemble signal across all challenge types and asset classes. This is the primary revenue path.
Signal marketplace. Processed signals are available at
mantis123.com. Trading firms, hedge funds, other Bittensor subnets, and individual traders can access forecasts spanning directional, volatility, breakout, barrier, cross-sectional, and funding rate predictions across dozens of assets. With time this will become the primary source of revenue.
Structured products. Partnerships with exchanges enable copy-trading vaults where positions are executed without leaking signal to the market or to consumers.
Agentic signal API. Integration with authentication and payment infrastructure enables autonomous agents to programmatically consume MANTIS signals.
Agentic mining platform. An autonomous model development system where LLM agents iteratively design features, train models, and evaluate performance. Users describe a trading thesis; the system handles feature engineering, model training, walk-forward evaluation, and live deployment. This lowers the barrier to mining and accelerates the rate at which the network explores the feature space, driving down the error correlation that bounds ensemble performance.
Incentive Alignment
Miners maximize emissions by producing predictions that improve ensemble accuracy. The scoring mechanism rewards orthogonal signal a miner correlated with existing top performers has low marginal value, even if their standalone accuracy is high.
The optimal strategy is to find genuinely different sources of edge.
Consumers benefit from signal quality that no single research team could produce. The decentralized structure means the product improves as the network grows.
Subnet 123 |
mantis123.com