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

Subnet 123

MANTIS

Emissions
Value
Recycled
Value
Recycled (24h)
Value
Registration Cost
Value
Active Validators
Value
Active Miners
Value
Active Dual Miners/Validators
Value

ABOUT

What exactly does it do?

MANTIS is an ambitious Bittensor subnet focused on decentralized financial forecasting. It operates as a specialized validator node (Subnet 123) that incentivizes miners to produce information with real predictive value. In essence, miners on MANTIS submit encoded predictions (embeddings) about future price movements of various assets, and the validator evaluates how much each miner’s data improves the overall prediction. This subnet is often described as a “signal machine” due to its radical, information-theoretic design. It has been deployed with uncommon scientific rigor, ensuring that only genuinely useful signals are rewarded in the ecosystem.

Unlike a traditional predictor, MANTIS doesn’t just try to forecast Bitcoin or other asset prices in isolation – it redefines how useful information is measured, extracted, and rewarded in a decentralized setting. The system specifically targets the next 1-hour returns of a basket of financial assets (initially focusing on cryptocurrencies like BTC/USD, with plans to include forex pairs). By evaluating miners based on the information-theoretical value their contributions add to predicting these returns, MANTIS creates the first cooperative, incentivized prediction market for asset prices on Bittensor. In fact, the lead developer notes this is “the first decentralized, cooperative, incentivized prediction of BTCUSD in history” – highlighting the groundbreaking nature of the project.

MANTIS is an ambitious Bittensor subnet focused on decentralized financial forecasting. It operates as a specialized validator node (Subnet 123) that incentivizes miners to produce information with real predictive value. In essence, miners on MANTIS submit encoded predictions (embeddings) about future price movements of various assets, and the validator evaluates how much each miner’s data improves the overall prediction. This subnet is often described as a “signal machine” due to its radical, information-theoretic design. It has been deployed with uncommon scientific rigor, ensuring that only genuinely useful signals are rewarded in the ecosystem.

Unlike a traditional predictor, MANTIS doesn’t just try to forecast Bitcoin or other asset prices in isolation – it redefines how useful information is measured, extracted, and rewarded in a decentralized setting. The system specifically targets the next 1-hour returns of a basket of financial assets (initially focusing on cryptocurrencies like BTC/USD, with plans to include forex pairs). By evaluating miners based on the information-theoretical value their contributions add to predicting these returns, MANTIS creates the first cooperative, incentivized prediction market for asset prices on Bittensor. In fact, the lead developer notes this is “the first decentralized, cooperative, incentivized prediction of BTCUSD in history” – highlighting the groundbreaking nature of the project.

PURPOSE

What exactly is the 'product/build'?

In practical terms, MANTIS continuously collects encrypted prediction data from all participating miners and uses a rigorous workflow to turn those inputs into rewards. It employs time-lock encryption to prevent cheating (miners can’t see actual price outcomes before their predictions are locked) and only decrypts submissions when it’s time to evaluate them. After decryption, the subnet trains an AI model to predict asset returns using all the miners’ data combined, and then uses permutation importance (a machine learning technique) to measure each miner’s marginal contribution to the prediction’s accuracy. Miners whose data significantly improves the model’s performance are considered to have high “salience.” Finally, MANTIS sets on-chain weights to reward miners in proportion to the salience of their contributions, directly linking reward share to the predictive value they provided. In summary, MANTIS transforms decentralized AI predictions into a quantitative signal, and allocates rewards to miners based on information gain – aligning incentives so that miners compete to provide the most useful predictive insights.

 

Key Functionality Highlights

Financial Prediction Task: Focuses on forecasting 1-hour price returns for a set of assets (starting with Bitcoin/USD, and designed to handle multiple cryptos or forex pairs). Miners submit numeric embeddings that represent their predictive insights for these assets.

Time-Lock Encryption for Fairness: Uses a decentralized randomness beacon (Drand) to lock each submission until a future block, ensuring miners cannot alter or submit predictions after seeing actual price outcomes. This guarantees the predictions are genuine and time-stamped prior to result knowledge.

AI Model Evaluation: Uses an XGBoost-based machine learning model to aggregate all miners’ data and predict price movements. It then applies permutation importance to each miner’s data feature to quantify its contribution (salience) to prediction accuracy. This is an information-theoretic scoring – effectively measuring how much information gain each miner provides to the forecasting task.

On-Chain Reward Setting: The validator automatically writes new weight values to the Bittensor chain, proportional to each miner’s accumulated salience score. In other words, miners who consistently provide more predictive signal get higher weights (and thus earn more $TAO rewards), aligning miner incentives with true signal quality.

Robust Data Integrity: MANTIS includes multiple safeguards – it verifies that each payload actually comes from the claimed miner (by embedding the miner’s hotkey in the data), rejects malformed or out-of-bound data (replacing it with neutral placeholders), and even filters out periods of stale prices (zero volatility periods) so that miners can’t game the system by “predicting” a non-moving price. These measures ensure the model isn’t misled by garbage data or trivial scenarios, maintaining a high-quality signal environment.

All together, MANTIS creates a closed-loop system where miners are encouraged to continuously improve their models to beat the market signal. It’s a modular, information-driven AI subnet that pushes Bittensor into the realm of financial prediction – a bold use case where each miner essentially acts as a small algorithmic trader, and the validator (MANTIS) serves as the objective referee that measures who actually has alpha (skill in prediction) and rewards them accordingly.

MANTIS is implemented as a sophisticated Bittensor validator program (written in Python) that coordinates data collection, model training, and blockchain interactions on Subnet 123. The product is essentially a custom Bittensor subnet build tailored for time-series data. It consists of several core components working in unison to carry out its unique consensus mechanism:

  • Orchestrator Loop (validator.py): The main process runs in sync with Bittensor’s blockchain blocks, triggering actions at defined intervals. Every few blocks, it initiates a cycle of operations – from pulling new miner data, to processing and evaluating that data, to updating weights. This orchestrator is the “brain” that ensures all parts of the system execute in the right order and on schedule.
  • Data Fetching & Commitments (cycle.py & comms.py): MANTIS uses a commit-reveal scheme. Each miner hosts an HTTP endpoint with their latest encrypted payload (commit). The validator’s cycle component reads the list of active miners from the Bittensor chain and downloads each miner’s payload blob via HTTP. The comms.py module handles these network requests asynchronously and enforces limits (e.g. maximum payload size to prevent spam). This design allows scalable and secure ingestion of miner data from potentially hundreds of sources in parallel.
  • Secure Storage & Time-Lock (storage.py – DataLog): Incoming encrypted payloads and price data are appended to a central DataLog structure. The DataLog queues all payloads and waits until enough time has passed (defined by a time-lock delay) to decrypt them safely. Decryption uses the tlock library and public randomness from Drand, ensuring that each payload is unlocked only after the target time (so miners cannot cheat by submitting after seeing the outcome). The DataLog also keeps historical price data for multiple assets and tracks miner identities (so if a miner’s hotkey changes, their old data won’t be wrongly attributed). All decrypted data is stored in-memory (and can be backed up from a URL on startup), making the validator state self-contained and easy to manage or reset.
  • Predictive Model (model.py – XGBoost): At the heart of MANTIS’s AI logic is an XGBoost regression model. Once a batch of fresh data is decrypted and ready, the validator forms a training dataset consisting of recent miner embeddings and the corresponding asset returns (e.g., the actual 1-hour price changes). The model is trained (or updated) to predict the next return from the miners’ combined inputs. Crucially, MANTIS then applies permutation importance on this model – it systematically shuffles each miner’s contribution to see how it affects prediction error. This yields a salience score per miner: if removing or randomizing a miner’s data causes the model to lose accuracy, that miner had valuable signal. The use of a tree-based ensemble (XGBoost) was a deliberate technical choice by the team, as they migrated from an earlier simple neural network (MLP) to XGBoost to reduce noise and improve the clarity of these importance scores. The model’s output is not a public prediction feed, but rather an internal mechanism to benchmark miner performance on the prediction task.
  • Blockchain Interface (subtensor via Bittensor SDK): Finally, MANTIS closes the loop by translating salience scores into Bittensor weights updates. After computing each miner’s normalized score, the validator uses the Bittensor subtensor.set_weights() call to update the weights on-chain. This operation effectively tells the Bittensor network how to allocate the next block’s mining rewards (TAO issuance or incentives) among miners on Subnet 123. Miners with higher weights will receive a larger portion of the rewards, directly reflecting their contribution to the collective intelligence of MANTIS. All of this happens automatically on a repeating schedule (every TASK_INTERVAL blocks as configured) without human intervention.

 

Technical Architecture

The MANTIS codebase is modular and designed for extensibility. Key parameters like the list of tracked assets and their embedding dimensions are centralized in a config file for easy adjustments. The entire pipeline from data ingestion to model evaluation runs continuously, pipelined around the blockchain’s block time. MANTIS also emphasizes security at each step – verifying that each payload actually belongs to the claimed miner (by checking an embedded hotkey in the decrypted data) and validating the structure of data to ignore any corrupt or outlier inputs. By combining these components, the build achieves a trust-minimized oracle for predictions: the system autonomously extracts a signal from the swarm of miners and feeds back a reward mechanism that reinforces good predictions. The entire code is open-source (MIT-licensed) and primarily written in Python (with ~88% Python code), making it accessible for audit and community contribution.

In summary, the MANTIS product is a custom Bittensor subnet runtime that turns a network of AI miners into a collective forecasting engine. It’s not a user-facing app but rather a protocol-level build – one that any TAO holder can interact with by either running a miner to contribute predictions or delegating stake to support the subnet. Its architecture is deliberately modular – for example, one could swap in a different model or salience metric by modifying model.py, or track new assets by tweaking config.py, without overhauling the entire system. This modularity ensures MANTIS can evolve rapidly, which is key given the complexity of financial time-series and the constant search for better signal extraction methods.

 

In practical terms, MANTIS continuously collects encrypted prediction data from all participating miners and uses a rigorous workflow to turn those inputs into rewards. It employs time-lock encryption to prevent cheating (miners can’t see actual price outcomes before their predictions are locked) and only decrypts submissions when it’s time to evaluate them. After decryption, the subnet trains an AI model to predict asset returns using all the miners’ data combined, and then uses permutation importance (a machine learning technique) to measure each miner’s marginal contribution to the prediction’s accuracy. Miners whose data significantly improves the model’s performance are considered to have high “salience.” Finally, MANTIS sets on-chain weights to reward miners in proportion to the salience of their contributions, directly linking reward share to the predictive value they provided. In summary, MANTIS transforms decentralized AI predictions into a quantitative signal, and allocates rewards to miners based on information gain – aligning incentives so that miners compete to provide the most useful predictive insights.

 

Key Functionality Highlights

Financial Prediction Task: Focuses on forecasting 1-hour price returns for a set of assets (starting with Bitcoin/USD, and designed to handle multiple cryptos or forex pairs). Miners submit numeric embeddings that represent their predictive insights for these assets.

Time-Lock Encryption for Fairness: Uses a decentralized randomness beacon (Drand) to lock each submission until a future block, ensuring miners cannot alter or submit predictions after seeing actual price outcomes. This guarantees the predictions are genuine and time-stamped prior to result knowledge.

AI Model Evaluation: Uses an XGBoost-based machine learning model to aggregate all miners’ data and predict price movements. It then applies permutation importance to each miner’s data feature to quantify its contribution (salience) to prediction accuracy. This is an information-theoretic scoring – effectively measuring how much information gain each miner provides to the forecasting task.

On-Chain Reward Setting: The validator automatically writes new weight values to the Bittensor chain, proportional to each miner’s accumulated salience score. In other words, miners who consistently provide more predictive signal get higher weights (and thus earn more $TAO rewards), aligning miner incentives with true signal quality.

Robust Data Integrity: MANTIS includes multiple safeguards – it verifies that each payload actually comes from the claimed miner (by embedding the miner’s hotkey in the data), rejects malformed or out-of-bound data (replacing it with neutral placeholders), and even filters out periods of stale prices (zero volatility periods) so that miners can’t game the system by “predicting” a non-moving price. These measures ensure the model isn’t misled by garbage data or trivial scenarios, maintaining a high-quality signal environment.

All together, MANTIS creates a closed-loop system where miners are encouraged to continuously improve their models to beat the market signal. It’s a modular, information-driven AI subnet that pushes Bittensor into the realm of financial prediction – a bold use case where each miner essentially acts as a small algorithmic trader, and the validator (MANTIS) serves as the objective referee that measures who actually has alpha (skill in prediction) and rewards them accordingly.

MANTIS is implemented as a sophisticated Bittensor validator program (written in Python) that coordinates data collection, model training, and blockchain interactions on Subnet 123. The product is essentially a custom Bittensor subnet build tailored for time-series data. It consists of several core components working in unison to carry out its unique consensus mechanism:

  • Orchestrator Loop (validator.py): The main process runs in sync with Bittensor’s blockchain blocks, triggering actions at defined intervals. Every few blocks, it initiates a cycle of operations – from pulling new miner data, to processing and evaluating that data, to updating weights. This orchestrator is the “brain” that ensures all parts of the system execute in the right order and on schedule.
  • Data Fetching & Commitments (cycle.py & comms.py): MANTIS uses a commit-reveal scheme. Each miner hosts an HTTP endpoint with their latest encrypted payload (commit). The validator’s cycle component reads the list of active miners from the Bittensor chain and downloads each miner’s payload blob via HTTP. The comms.py module handles these network requests asynchronously and enforces limits (e.g. maximum payload size to prevent spam). This design allows scalable and secure ingestion of miner data from potentially hundreds of sources in parallel.
  • Secure Storage & Time-Lock (storage.py – DataLog): Incoming encrypted payloads and price data are appended to a central DataLog structure. The DataLog queues all payloads and waits until enough time has passed (defined by a time-lock delay) to decrypt them safely. Decryption uses the tlock library and public randomness from Drand, ensuring that each payload is unlocked only after the target time (so miners cannot cheat by submitting after seeing the outcome). The DataLog also keeps historical price data for multiple assets and tracks miner identities (so if a miner’s hotkey changes, their old data won’t be wrongly attributed). All decrypted data is stored in-memory (and can be backed up from a URL on startup), making the validator state self-contained and easy to manage or reset.
  • Predictive Model (model.py – XGBoost): At the heart of MANTIS’s AI logic is an XGBoost regression model. Once a batch of fresh data is decrypted and ready, the validator forms a training dataset consisting of recent miner embeddings and the corresponding asset returns (e.g., the actual 1-hour price changes). The model is trained (or updated) to predict the next return from the miners’ combined inputs. Crucially, MANTIS then applies permutation importance on this model – it systematically shuffles each miner’s contribution to see how it affects prediction error. This yields a salience score per miner: if removing or randomizing a miner’s data causes the model to lose accuracy, that miner had valuable signal. The use of a tree-based ensemble (XGBoost) was a deliberate technical choice by the team, as they migrated from an earlier simple neural network (MLP) to XGBoost to reduce noise and improve the clarity of these importance scores. The model’s output is not a public prediction feed, but rather an internal mechanism to benchmark miner performance on the prediction task.
  • Blockchain Interface (subtensor via Bittensor SDK): Finally, MANTIS closes the loop by translating salience scores into Bittensor weights updates. After computing each miner’s normalized score, the validator uses the Bittensor subtensor.set_weights() call to update the weights on-chain. This operation effectively tells the Bittensor network how to allocate the next block’s mining rewards (TAO issuance or incentives) among miners on Subnet 123. Miners with higher weights will receive a larger portion of the rewards, directly reflecting their contribution to the collective intelligence of MANTIS. All of this happens automatically on a repeating schedule (every TASK_INTERVAL blocks as configured) without human intervention.

 

Technical Architecture

The MANTIS codebase is modular and designed for extensibility. Key parameters like the list of tracked assets and their embedding dimensions are centralized in a config file for easy adjustments. The entire pipeline from data ingestion to model evaluation runs continuously, pipelined around the blockchain’s block time. MANTIS also emphasizes security at each step – verifying that each payload actually belongs to the claimed miner (by checking an embedded hotkey in the decrypted data) and validating the structure of data to ignore any corrupt or outlier inputs. By combining these components, the build achieves a trust-minimized oracle for predictions: the system autonomously extracts a signal from the swarm of miners and feeds back a reward mechanism that reinforces good predictions. The entire code is open-source (MIT-licensed) and primarily written in Python (with ~88% Python code), making it accessible for audit and community contribution.

In summary, the MANTIS product is a custom Bittensor subnet runtime that turns a network of AI miners into a collective forecasting engine. It’s not a user-facing app but rather a protocol-level build – one that any TAO holder can interact with by either running a miner to contribute predictions or delegating stake to support the subnet. Its architecture is deliberately modular – for example, one could swap in a different model or salience metric by modifying model.py, or track new assets by tweaking config.py, without overhauling the entire system. This modularity ensures MANTIS can evolve rapidly, which is key given the complexity of financial time-series and the constant search for better signal extraction methods.

 

WHO

Team Info

MANTIS was conceived and is led by a developer known by the pseudonym “Barbarian.” On social platforms (X/Twitter), Barbarian goes by @Barbarian7676 and has been the driving force behind Subnet 123’s design and implementation. The community acknowledges him as the creator of MANTIS. Barbarian is an active member of the Bittensor ecosystem who has articulated the vision for MANTIS in public. He emphasized the novelty of the project, stating “we are doing (to my knowledge) the first decentralized, cooperative, incentivized prediction of BTCUSD in history!”.

On the development side, the open-source repository for MANTIS (hosted on GitHub) lists two contributors: Barbariandev (the GitHub handle for Barbarian) and an additional contributor with the handle s0wa48. Barbariandev authored the vast majority of the code (including core modules and the detailed whitepaper/README), indicating that Barbarian is the principal engineer of the project. The second contributor, s0wa48, has also been acknowledged, though their role appears to be smaller – possibly assisting with code or research contributions.

The MANTIS team is relatively small and agile. There isn’t a formal corporate entity behind MANTIS; it is more of a community-driven project. However, the professionalism of the implementation (e.g., rigorous whitepaper, security considerations, etc.) speaks to the team’s strong technical background. Barbarian himself has engaged with the community to refine the subnet – for example, discussing technical updates (like switching models for better performance) and future plans. This openness suggests the team values collaboration and is receptive to improvements.

In summary, Barbarian (lead developer) is the face and brain of MANTIS. The team’s communication has come mostly through technical documentation (the GitHub repo’s whitepaper) and social media updates. The accuracy and depth of MANTIS’s design have been praised by community analysts (such as @CryptoZPunisher on X, who wrote a detailed overview of the subnet) – reflecting well on the team’s capability. With Barbarian at the helm, the project is positioned as a labor of love by a knowledgeable builder in the Bittensor ecosystem, rather than a large funded team. This lean setup hasn’t stopped MANTIS from achieving milestones; if anything, it underscores the power of a single visionary developer aided by community support in the Bittensor network.

 

MANTIS was conceived and is led by a developer known by the pseudonym “Barbarian.” On social platforms (X/Twitter), Barbarian goes by @Barbarian7676 and has been the driving force behind Subnet 123’s design and implementation. The community acknowledges him as the creator of MANTIS. Barbarian is an active member of the Bittensor ecosystem who has articulated the vision for MANTIS in public. He emphasized the novelty of the project, stating “we are doing (to my knowledge) the first decentralized, cooperative, incentivized prediction of BTCUSD in history!”.

On the development side, the open-source repository for MANTIS (hosted on GitHub) lists two contributors: Barbariandev (the GitHub handle for Barbarian) and an additional contributor with the handle s0wa48. Barbariandev authored the vast majority of the code (including core modules and the detailed whitepaper/README), indicating that Barbarian is the principal engineer of the project. The second contributor, s0wa48, has also been acknowledged, though their role appears to be smaller – possibly assisting with code or research contributions.

The MANTIS team is relatively small and agile. There isn’t a formal corporate entity behind MANTIS; it is more of a community-driven project. However, the professionalism of the implementation (e.g., rigorous whitepaper, security considerations, etc.) speaks to the team’s strong technical background. Barbarian himself has engaged with the community to refine the subnet – for example, discussing technical updates (like switching models for better performance) and future plans. This openness suggests the team values collaboration and is receptive to improvements.

In summary, Barbarian (lead developer) is the face and brain of MANTIS. The team’s communication has come mostly through technical documentation (the GitHub repo’s whitepaper) and social media updates. The accuracy and depth of MANTIS’s design have been praised by community analysts (such as @CryptoZPunisher on X, who wrote a detailed overview of the subnet) – reflecting well on the team’s capability. With Barbarian at the helm, the project is positioned as a labor of love by a knowledgeable builder in the Bittensor ecosystem, rather than a large funded team. This lean setup hasn’t stopped MANTIS from achieving milestones; if anything, it underscores the power of a single visionary developer aided by community support in the Bittensor network.

 

FUTURE

Roadmap

The MANTIS project is still in active development, and the team has signaled several future directions and improvements on their roadmap. One of the core philosophies of MANTIS is continuous optimization – both of the signals it captures and the methods it uses. Barbarian has mentioned plans to “create a mini Bittensor within MANTIS” as a next step. By this, he implies setting up an internal experimental framework where different configurations of the subnet can be tried in parallel. For example, the team wants to systematically explore and tune the optimal set of assets, loss functions, models, embedding dimensions, etc. in order to further improve predictive performance. In practice, this could mean running multiple variant models or tasks internally and then deploying the best configurations to the main subnet. This meta-optimization approach shows that the roadmap is not static – MANTIS will evolve by learning what works best in a kind of self-refining loop.

In the near term, the technical updates implemented so far lay the groundwork for upcoming features. The switch from an MLP to XGBoost has improved signal clarity, but the team may consider even more sophisticated models or hybrid approaches if they prove beneficial. Since MANTIS is modular, one roadmap item could be testing alternative salience algorithms (the design allows swapping out the importance metric easily) or even incorporating ensemble methods to cross-verify miners’ contributions. Additionally, multi-asset support is a key area of expansion. The validator is already capable of handling a basket of assets (not just BTC) as per the config – so we can expect new asset pairs or markets to be added over time, turning MANTIS into a more comprehensive financial oracle. This might include additional cryptocurrencies or major forex pairs beyond the initial picks, broadening the scope of what miners can predict and earn from.

Another likely focus on the roadmap is improving miner engagement and network effects. As more miners join Subnet 123, the competitive signal should strengthen (a larger “swarm intelligence”). The team may work on tools or guidelines (perhaps a miner guide beyond the existing MINER_GUIDE.md) to help miners better integrate or optimize their submissions for MANTIS. They have already published a detailed miner guide in the repo, which suggests ongoing support for the miner community. Ensuring that the network remains healthy and robust – e.g., handling increased load, preventing any adversarial strategies – will be an ongoing priority. The security features in place (like data validation and anti-spoofing checks) will be maintained and likely expanded if new attack vectors are discovered as the subnet grows.

From a research and development perspective, the roadmap is iterative: deploy, observe, refine. MANTIS has been live only for a short time, so a lot of the roadmap involves learning from real-world performance. We’ve already seen community members share performance metrics (such as correlation of MANTIS’s combined signal with actual BTC price moves) and these will guide future tweaks. The creator hinted that “once we let [the system evolve], it’s going to be interesting” – implying that after initial guarded phases, the subnet might be opened up further, possibly allowing more assets or more frequent updates.

In summary, upcoming developments for MANTIS likely include:

Dynamic Configuration Tuning: Using the “mini-Bittensor” experiment approach to find the best model parameters and asset mix for maximizing predictive power. The outcome of this could be regular improvements to MANTIS’s core algorithm.

Expanded Asset Coverage: Gradually incorporating additional financial instruments (crypto or forex) into the prediction basket as the system proves itself on BTCUSD and similar tasks. This turns MANTIS into a multi-market oracle.

Miner Ecosystem Growth: Attracting more miners and possibly introducing incentive tweaks or educational resources so miners can improve their models. A larger miner pool can increase the quality of the aggregated signal.

Continuous Model Improvement: Exploring advanced AI models (e.g., time-series specific architectures or larger ensembles) if they can be integrated without sacrificing the interpretability of the importance scores. The team will continue balancing model complexity with the need for transparent contribution scoring.

Governance and Parameter Updates: As a subnet, MANTIS could eventually allow some governance by token holders (for example, deciding which assets to focus on or adjusting reward mechanisms). While not explicitly detailed yet, this could be on the roadmap as the subnet matures and decentralizes further.

It’s worth noting that the MANTIS codebase is open and extensible by design, meaning many roadmap items (new assets, new models, etc.) are straightforward to implement technically. The main challenge ahead is empirical: finding what yields the most reliable signal and fair incentive structure. The team’s methodical approach – implementing key updates to reduce noise and rigorously testing changes – will likely continue. In conclusion, the roadmap for MANTIS is about deepening the intelligence of the subnet and scaling its predictive capabilities, all while staying true to the principle of rewarding genuine information gain. With each iteration, MANTIS aims to strengthen its position as “the ultimate signal machine” in Bittensor, potentially becoming a template for future AI financial subnets if its success endures.

 

The MANTIS project is still in active development, and the team has signaled several future directions and improvements on their roadmap. One of the core philosophies of MANTIS is continuous optimization – both of the signals it captures and the methods it uses. Barbarian has mentioned plans to “create a mini Bittensor within MANTIS” as a next step. By this, he implies setting up an internal experimental framework where different configurations of the subnet can be tried in parallel. For example, the team wants to systematically explore and tune the optimal set of assets, loss functions, models, embedding dimensions, etc. in order to further improve predictive performance. In practice, this could mean running multiple variant models or tasks internally and then deploying the best configurations to the main subnet. This meta-optimization approach shows that the roadmap is not static – MANTIS will evolve by learning what works best in a kind of self-refining loop.

In the near term, the technical updates implemented so far lay the groundwork for upcoming features. The switch from an MLP to XGBoost has improved signal clarity, but the team may consider even more sophisticated models or hybrid approaches if they prove beneficial. Since MANTIS is modular, one roadmap item could be testing alternative salience algorithms (the design allows swapping out the importance metric easily) or even incorporating ensemble methods to cross-verify miners’ contributions. Additionally, multi-asset support is a key area of expansion. The validator is already capable of handling a basket of assets (not just BTC) as per the config – so we can expect new asset pairs or markets to be added over time, turning MANTIS into a more comprehensive financial oracle. This might include additional cryptocurrencies or major forex pairs beyond the initial picks, broadening the scope of what miners can predict and earn from.

Another likely focus on the roadmap is improving miner engagement and network effects. As more miners join Subnet 123, the competitive signal should strengthen (a larger “swarm intelligence”). The team may work on tools or guidelines (perhaps a miner guide beyond the existing MINER_GUIDE.md) to help miners better integrate or optimize their submissions for MANTIS. They have already published a detailed miner guide in the repo, which suggests ongoing support for the miner community. Ensuring that the network remains healthy and robust – e.g., handling increased load, preventing any adversarial strategies – will be an ongoing priority. The security features in place (like data validation and anti-spoofing checks) will be maintained and likely expanded if new attack vectors are discovered as the subnet grows.

From a research and development perspective, the roadmap is iterative: deploy, observe, refine. MANTIS has been live only for a short time, so a lot of the roadmap involves learning from real-world performance. We’ve already seen community members share performance metrics (such as correlation of MANTIS’s combined signal with actual BTC price moves) and these will guide future tweaks. The creator hinted that “once we let [the system evolve], it’s going to be interesting” – implying that after initial guarded phases, the subnet might be opened up further, possibly allowing more assets or more frequent updates.

In summary, upcoming developments for MANTIS likely include:

Dynamic Configuration Tuning: Using the “mini-Bittensor” experiment approach to find the best model parameters and asset mix for maximizing predictive power. The outcome of this could be regular improvements to MANTIS’s core algorithm.

Expanded Asset Coverage: Gradually incorporating additional financial instruments (crypto or forex) into the prediction basket as the system proves itself on BTCUSD and similar tasks. This turns MANTIS into a multi-market oracle.

Miner Ecosystem Growth: Attracting more miners and possibly introducing incentive tweaks or educational resources so miners can improve their models. A larger miner pool can increase the quality of the aggregated signal.

Continuous Model Improvement: Exploring advanced AI models (e.g., time-series specific architectures or larger ensembles) if they can be integrated without sacrificing the interpretability of the importance scores. The team will continue balancing model complexity with the need for transparent contribution scoring.

Governance and Parameter Updates: As a subnet, MANTIS could eventually allow some governance by token holders (for example, deciding which assets to focus on or adjusting reward mechanisms). While not explicitly detailed yet, this could be on the roadmap as the subnet matures and decentralizes further.

It’s worth noting that the MANTIS codebase is open and extensible by design, meaning many roadmap items (new assets, new models, etc.) are straightforward to implement technically. The main challenge ahead is empirical: finding what yields the most reliable signal and fair incentive structure. The team’s methodical approach – implementing key updates to reduce noise and rigorously testing changes – will likely continue. In conclusion, the roadmap for MANTIS is about deepening the intelligence of the subnet and scaling its predictive capabilities, all while staying true to the principle of rewarding genuine information gain. With each iteration, MANTIS aims to strengthen its position as “the ultimate signal machine” in Bittensor, potentially becoming a template for future AI financial subnets if its success endures.

 

MEDIA

Novelty Search is great, but for most investors trying to understand Bittensor, the technical depth is a wall, not a bridge. If we’re going to attract investment into this ecosystem then we need more people to understand it! That’s why Siam Kidd and Mark Creaser from DSV Fund have launched Revenue Search, where they ask the simple questions that investors want to know the answers to.

Recorded in August 2025, this Revenue Search episode features Atlas from Subnet 123, Mantis. Atlas explains his journey from mining Ethereum as a teenager to building Mantis, a subnet designed to generate short-term market prediction signals for assets like Bitcoin and forex pairs. The discussion covers how Mantis incentivizes accurate predictions, its path to monetization through partnerships or PTN, and future plans to scale and verify signals on-chain.

A big thank you to Tao Stats for producing these insightful videos in the Novelty Search series. We appreciate the opportunity to dive deep into the groundbreaking work being done by Subnets within Bittensor! Check out some of their other videos HERE.

In this session, “Barbarian” introduces Mantis, a Bittensor prediction subnet that turns miners’ encrypted, time-locked embeddings into price-direction signals for assets like BTC/ETH and pays miners strictly by the information they add to a network ensemble. Barbarian recounts his unlikely origin (learning CLI/coding in rural Costa Rica), then explains Mantis’ pipeline: miners post embeddings to an O2 bucket with timelock to block relay mining; validators later decrypt, train per-miner logistic regressions, feed an XGBoost meta-model, and score each miner by the ensemble’s performance drop when that miner’s logits are permuted—making civil/copy strategies unprofitable because duplicates don’t move the needle. He details hardening work (bounding payload size, isolating decryption to mitigate DOS) and a shift to a private randomness server so validators can infer in real time and write encrypted predictions to Solana for public, after-the-fact verification. The discussion touches on why binary (up/down) targets came first, ambitions to reward even tiny edges over 50%, requests for tighter UID/registration controls, and the plan to monetize via direct trading (e.g., PTN) and on-chain signal auctions. Barbarian also previews a “sub-subnet” style evaluator that uses synthetic series and planted signals to measure salience/leakage, and a parallel effort (SN125) exploring on-chain prediction markets with miner-incentivized liquidity. The session closes with Q&A on ensemble sizing, comparisons to Numerai, and the claim that Mantis’ advantage is fast, verifiable attribution of contribution—because on prediction nets the incentive function is everything.

NEWS

Announcements