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
ReinforcedAI (Subnet 92) is a specialized network in the Bittensor ecosystem devoted to AI-powered smart contract auditing. Its mission is to provide fast, scalable, and continuously improving security analysis for blockchain smart contracts (specifically those written in Solidity). ReinforcedAI’s subnet stands out as a domain-specific “mini-network” for automated vulnerability detection in Ethereum smart contracts. The need for such a subnet arises from the growing importance of smart contract security: over the past decade, numerous exploits and billions of dollars have been stolen due to bugs in contract code.
Traditional audits are slow and costly, creating a demand for AI-driven solutions that can quickly and cheaply check code for flaws. ReinforcedAI addresses this by aligning decentralized AI expertise toward auditing tasks, effectively creating a “crowd-sourced” smart contract security platform within Bittensor. By leveraging Bittensor’s incentive-driven design, it aims to accelerate the auditing process and keep pace with fast-moving DeFi development, improving code security through competition and reinforcement.
ReinforcedAI (Subnet 92) is a specialized network in the Bittensor ecosystem devoted to AI-powered smart contract auditing. Its mission is to provide fast, scalable, and continuously improving security analysis for blockchain smart contracts (specifically those written in Solidity). ReinforcedAI’s subnet stands out as a domain-specific “mini-network” for automated vulnerability detection in Ethereum smart contracts. The need for such a subnet arises from the growing importance of smart contract security: over the past decade, numerous exploits and billions of dollars have been stolen due to bugs in contract code.
Traditional audits are slow and costly, creating a demand for AI-driven solutions that can quickly and cheaply check code for flaws. ReinforcedAI addresses this by aligning decentralized AI expertise toward auditing tasks, effectively creating a “crowd-sourced” smart contract security platform within Bittensor. By leveraging Bittensor’s incentive-driven design, it aims to accelerate the auditing process and keep pace with fast-moving DeFi development, improving code security through competition and reinforcement.
ReinforcedAI brings AI capabilities to Web3 security – specifically, automated Solidity code analysis – into the Bittensor “neural internet.” In this subnet, miners run AI models that inspect smart contract code for vulnerabilities, and validators assess the quality of those inspections. This is analogous to other subnets (e.g. ones for text or image) but with smart contract security as the target domain. The subnet’s presence expands Bittensor’s reach beyond traditional AI tasks into the realm of blockchain development, positioning Bittensor as not only a marketplace for AI knowledge but also a decentralized auditing service. By running on Bittensor’s substrate-based blockchain (called Subtensor), ReinforcedAI inherits a crypto-economic framework: miners earn rewards in TAO for valuable security insights, and the subnet can be publicly accessed and permissionless, meaning any developer or team can join to contribute an auditing model or use the audit data. Subnet 92 acts as a critical security-focused pillar in the Bittensor ecosystem, tapping into community-driven AI to improve the safety of decentralized applications.
How ReinforcedAI’s Audit Network Works
ReinforcedAI’s subnet operates as a decentralized loop of AI auditors and verifiers designed to improve over time. At a high level, the network works as follows:
Smart Contract Analysis by AI Miners: Participants called miners run AI models (likely large language models fine-tuned for code) that take in Solidity smart contract code and output any discovered vulnerabilities. Each miner is essentially an automated auditor that reviews code for bugs like reentrancy, overflow, access control issues, etc. The models produce a structured report of findings in JSON format – listing the code lines affected, the type/category of each vulnerability, an explanation or proof-of-concept, and even references to known exploits (prior art) when relevant. For example, a miner might analyze a piece of contract code and return an issue labeled as “Reentrancy” with a description of how an attacker could exploit the withdrawBalance function. Miners run these models off-chain (e.g. on local GPUs or via API calls), but interface with the Bittensor chain to receive tasks and submit results.
Validator-Generated Challenges: On the other side, validators in Subnet 92 are responsible for benchmarking and scoring the miners’ performance. Validators generate auditing challenges by creating or sourcing Solidity contracts with known vulnerabilities. In practice, the validator uses an LLM (the team currently leverages Anthropic’s Claude model) to randomly generate smart contract code and deliberately insert specific vulnerabilities. The validator ensures the contract compiles and knows ahead of time what the bug is (including synonyms for its description). This contract is then fed to all the miners. Since the validators know the correct answer (which vulnerability was inserted), they can evaluate how well each miner’s AI caught the issue. The use of an AI (Claude) to produce ever-changing contracts means miners can’t simply memorize answers – they have to genuinely analyze code, and it provides endless varied test cases to continuously train/improve the auditors.
Incentive and Scoring Mechanism: When miners return their analysis, validators compare the reported vulnerabilities to the expected ones. If a miner correctly identifies the issue (allowing for variations in wording), it earns a high score; missing it or flagging irrelevant/incorrect issues results in a low score. These scores are fed into Bittensor’s consensus (the Yuma Consensus) which aggregates validator feedback and determines reward weights for miners. In essence, miners that consistently find the right bugs get more TAO rewards, and those performing poorly get fewer or eventually drop out. This creates a reinforcement learning dynamic at the system level: miners are economically motivated to improve their models so they catch more vulnerabilities over time. The decentralized competition thus yields continuously better AI auditors, as each team refines their approach to outperform others. The end result is a collective AI auditing service that becomes more accurate and comprehensive as it is exercised, aligning with the project’s name “ReinforcedAI” (since the process reinforces better auditing behavior over time).
Real-Time Auditing Service: Although the subnet’s primary feedback loop is internal (miners solving validator challenges), it is ultimately geared to serve the broader community. The “product” of Subnet 92 is effectively an AI auditing engine: a decentralized service that can audit arbitrary Solidity contracts on demand. In the long run, one can imagine developers submitting their smart contracts to this network and receiving back an audit report from the ensemble of miners. The subnet is built to scale and be open to all (anyone can join as a miner, and any code could be analyzed). However, as of launch, the focus is on tuning the network via the internal challenge-response mechanism. The immediate outputs are the vulnerability findings that miners produce, which could be aggregated to form an audit report. Each finding is detailed and human-readable, often with a brief exploit scenario and a recommended fix or reference, making the AI’s output actionable to developers.
Continuous Improvement: A key characteristic of ReinforcedAI’s subnet is its ability to continuously learn and improve without central intervention. As more contracts and vulnerability types are thrown at the miners, their models (which teams can update or retrain offline) get better at catching subtle bugs. The competitive nature – multiple independent teams trying different models/strategies – means the overall subnet explores a wide solution space. The best ideas rise to the top through the reward mechanism, creating a virtuous cycle of improvement. In short, the subnet functions as a decentralized, self-improving auditing AI, which is novel compared to traditional static tools or even single-company AI auditors.
Technical Architecture and Innovations
ReinforcedAI’s design incorporates several architectural choices and innovations to support its function:
Thin Miner & Microservice Separation: The subnet adopts a modular architecture where the miner node is a thin client and the heavy AI processing is done in a separate model server microservice. In practice, this means a miner process handles blockchain interactions (registering on Subtensor, listening for validator tasks, submitting answers) while delegating the code analysis to an HTTP microservice running the actual LLM model. The miner simply calls the microservice’s endpoint with the contract code, and the service returns the JSON results. This separation makes deployment and development easier: miners can update their AI model or even switch to a different AI backend without modifying Bittensor-specific code. The project provides a reference microservice implementation that uses a local LLM to perform audits, which developers can use out-of-the-box for testing. However, miners are encouraged to plug in their own models or even third-party AI APIs to gain a competitive edge, as long as they adhere to the predefined audit protocol (the JSON output schema and request handling). This plug-and-play model server approach abstracts the AI logic from the blockchain logic. It also means the system can quickly integrate improvements in AI – for example, a team could switch to a more powerful model (say, GPT-4 or a custom fine-tuned model) just by updating their microservice, without needing to alter how they interact with the subnet.
Audit Protocol & Structured Output: The communication between validators and miners follows a specific audit protocol. When a validator sends out a contract to audit, miners respond with a list of discovered issues formatted as an array of JSON objects. Each vulnerability report includes fields such as the source code line numbers where the issue occurs (from_line, to_line), the category of the vulnerability (e.g. Reentrancy, Integer Overflow, Unchecked Call), a test case or scenario illustrating the exploit, a detailed description of the problem, and optionally links to related known exploits (“prior art”). By enforcing this structure (defined in code via Pydantic models in the repository), the subnet ensures that results from different miners are comparable and can be programmatically verified by validators. It also simplifies integration of the output into developer tools; for instance, an IDE plugin or CI pipeline could consume this JSON to display warnings in code. The choice of JSON and fixed schema was likely made to handle machine-parsable results (for scoring and later automation) while still allowing rich, explanatory content (Markdown descriptions) for human developers to read.
Secure “Proof-of-Work” via NFTs: One of the most novel features of ReinforcedAI’s subnet is its solution to prevent cheating among miners. In earlier phases of Bittensor, a known issue was that a single team could copy one good model’s answers across many miner instances (“sybil” miners) to multiply rewards without extra work. ReinforcedAI implements a Proof-of-Work validation mechanism using NFTs (Non-Fungible Tokens) to thwart duplicate submissions. The concept is: each miner must produce a unique cryptographic proof of its work for every task, which is embedded in an NFT. Concretely, for each audit response, the miner generates an NFT on the Polkadot-based Unique Network blockchain that contains an encrypted hash or signature of its findings. Only the requesting validator (who holds a private key for that query) can decrypt and verify that the NFT’s data matches the response the miner gave. If a miner tried to copy another’s answer without actually computing it, it wouldn’t possess the correct proof to embed in the NFT, and the validator would detect the mismatch and refuse to score that response. Additionally, the NFT is tied to the miner’s identity (public key); a miner can’t reuse another miner’s proof. This effectively forces each miner to truly do the work for each audit – they must run their model and produce the corresponding NFT proof. The use of Unique Network’s NFT capabilities showcases cross-chain innovation: Bittensor’s subnet triggers NFT mints on a Polkadot parachain as a form of work certificate. The ReinforcedAI team had prior experience with advanced NFT use-cases, and they identified this as a “perfect match” to ensure fairness in their subnet. This mechanism is a significant technical achievement, reinforcing trust that the decentralized audit results are genuine and not simply replicated by lazy actors. It adds a slight overhead (minting an NFT per task), but greatly strengthens the integrity of the competition.
Relayer Component for Network Resilience: The architecture also introduces a Relayer – an intermediate node that sits between validators and miners to manage communications. In a typical Bittensor setup, validators would query miners directly via their Axon endpoints. ReinforcedAI uses a relayer to aggregate and control the flow of data. The relayer provides several benefits: it collects detailed metrics on which contracts were sent and what responses were given, helping track validator quality and miner performance over time (useful for diagnostics and improvement). It monitors validator activity to detect any anomalies or bias, thus adding transparency to the consensus process. The relayer also allows for protocol upgrades or changes without halting the whole network – for instance, if the team wants to update the audit protocol or scoring algorithm, the relayer can mediate between old and new versions, giving miners time to adapt (this is referred to as data filtering and normalization, and makes the subnet more flexible in the face of updates). Additionally, the relayer can act as a buffer: if a miner’s Axon (the networking server in Bittensor) is temporarily unavailable, the relayer can queue the validator’s request and forward it when the miner comes back online, improving reliability in a distributed setting. It also keeps track of miner availability to help distribute load and prevent any single miner from being overwhelmed by requests. In summary, the Relayer is a kind of traffic manager and data auditor for the subnet, ensuring that the interactions between miners and validators are smooth, transparent, and robust. This component isn’t present in all Bittensor subnets and reflects ReinforcedAI’s additional efforts to create a production-quality infrastructure suitable for something as critical as security audits.
On-Chain and Off-Chain Integration: The system spans multiple layers of blockchain technology. On-chain, the subnet operates within Bittensor’s Subtensor chain (a Substrate-based chain) where all miners and validators register and where TAO rewards are dispensed according to performance. The TAO token and Bittensor’s on-chain governance/consensus mechanisms (like the root subnet allocation of rewards to subnets, etc.) provide the economic security and incentive alignment. Off-chain, the actual AI heavy lifting is done by possibly large models (which could be hosted on GPUs, servers, or cloud). The integration with Unique Network is entirely off-chain from Bittensor’s perspective – it requires the miner to have credentials or access to mint an NFT on Unique’s chain (likely via Unique’s API or SDK). This cross-chain aspect highlights the interoperability: the audit subnet on one blockchain (Bittensor) utilizes the NFT ledger of another blockchain (Unique Network on Polkadot) to enhance its protocol. Additionally, development tooling from the Polkadot ecosystem is used (the team mentioned using Substrate and benefiting from its flexibility for this solution). The choice of Python for most of the implementation (miners, validators, microservices) makes it accessible to AI developers (since Python is the lingua franca for ML). Some components, like smart contract compilation or analysis helpers, use Solidity tooling (e.g. solc compiler). The project’s repository also contains a submodule for solc-ast (an AST parser for Solidity), indicating that part of the auditing process may involve static analysis or parsing of contract code structure in addition to pure LLM output. All together, ReinforcedAI’s architecture is an elegant blend of blockchain incentives (Subtensor + Unique NFTs) and AI microservices, orchestrated to yield a decentralized security analysis platform.
ReinforcedAI brings AI capabilities to Web3 security – specifically, automated Solidity code analysis – into the Bittensor “neural internet.” In this subnet, miners run AI models that inspect smart contract code for vulnerabilities, and validators assess the quality of those inspections. This is analogous to other subnets (e.g. ones for text or image) but with smart contract security as the target domain. The subnet’s presence expands Bittensor’s reach beyond traditional AI tasks into the realm of blockchain development, positioning Bittensor as not only a marketplace for AI knowledge but also a decentralized auditing service. By running on Bittensor’s substrate-based blockchain (called Subtensor), ReinforcedAI inherits a crypto-economic framework: miners earn rewards in TAO for valuable security insights, and the subnet can be publicly accessed and permissionless, meaning any developer or team can join to contribute an auditing model or use the audit data. Subnet 92 acts as a critical security-focused pillar in the Bittensor ecosystem, tapping into community-driven AI to improve the safety of decentralized applications.
How ReinforcedAI’s Audit Network Works
ReinforcedAI’s subnet operates as a decentralized loop of AI auditors and verifiers designed to improve over time. At a high level, the network works as follows:
Smart Contract Analysis by AI Miners: Participants called miners run AI models (likely large language models fine-tuned for code) that take in Solidity smart contract code and output any discovered vulnerabilities. Each miner is essentially an automated auditor that reviews code for bugs like reentrancy, overflow, access control issues, etc. The models produce a structured report of findings in JSON format – listing the code lines affected, the type/category of each vulnerability, an explanation or proof-of-concept, and even references to known exploits (prior art) when relevant. For example, a miner might analyze a piece of contract code and return an issue labeled as “Reentrancy” with a description of how an attacker could exploit the withdrawBalance function. Miners run these models off-chain (e.g. on local GPUs or via API calls), but interface with the Bittensor chain to receive tasks and submit results.
Validator-Generated Challenges: On the other side, validators in Subnet 92 are responsible for benchmarking and scoring the miners’ performance. Validators generate auditing challenges by creating or sourcing Solidity contracts with known vulnerabilities. In practice, the validator uses an LLM (the team currently leverages Anthropic’s Claude model) to randomly generate smart contract code and deliberately insert specific vulnerabilities. The validator ensures the contract compiles and knows ahead of time what the bug is (including synonyms for its description). This contract is then fed to all the miners. Since the validators know the correct answer (which vulnerability was inserted), they can evaluate how well each miner’s AI caught the issue. The use of an AI (Claude) to produce ever-changing contracts means miners can’t simply memorize answers – they have to genuinely analyze code, and it provides endless varied test cases to continuously train/improve the auditors.
Incentive and Scoring Mechanism: When miners return their analysis, validators compare the reported vulnerabilities to the expected ones. If a miner correctly identifies the issue (allowing for variations in wording), it earns a high score; missing it or flagging irrelevant/incorrect issues results in a low score. These scores are fed into Bittensor’s consensus (the Yuma Consensus) which aggregates validator feedback and determines reward weights for miners. In essence, miners that consistently find the right bugs get more TAO rewards, and those performing poorly get fewer or eventually drop out. This creates a reinforcement learning dynamic at the system level: miners are economically motivated to improve their models so they catch more vulnerabilities over time. The decentralized competition thus yields continuously better AI auditors, as each team refines their approach to outperform others. The end result is a collective AI auditing service that becomes more accurate and comprehensive as it is exercised, aligning with the project’s name “ReinforcedAI” (since the process reinforces better auditing behavior over time).
Real-Time Auditing Service: Although the subnet’s primary feedback loop is internal (miners solving validator challenges), it is ultimately geared to serve the broader community. The “product” of Subnet 92 is effectively an AI auditing engine: a decentralized service that can audit arbitrary Solidity contracts on demand. In the long run, one can imagine developers submitting their smart contracts to this network and receiving back an audit report from the ensemble of miners. The subnet is built to scale and be open to all (anyone can join as a miner, and any code could be analyzed). However, as of launch, the focus is on tuning the network via the internal challenge-response mechanism. The immediate outputs are the vulnerability findings that miners produce, which could be aggregated to form an audit report. Each finding is detailed and human-readable, often with a brief exploit scenario and a recommended fix or reference, making the AI’s output actionable to developers.
Continuous Improvement: A key characteristic of ReinforcedAI’s subnet is its ability to continuously learn and improve without central intervention. As more contracts and vulnerability types are thrown at the miners, their models (which teams can update or retrain offline) get better at catching subtle bugs. The competitive nature – multiple independent teams trying different models/strategies – means the overall subnet explores a wide solution space. The best ideas rise to the top through the reward mechanism, creating a virtuous cycle of improvement. In short, the subnet functions as a decentralized, self-improving auditing AI, which is novel compared to traditional static tools or even single-company AI auditors.
Technical Architecture and Innovations
ReinforcedAI’s design incorporates several architectural choices and innovations to support its function:
Thin Miner & Microservice Separation: The subnet adopts a modular architecture where the miner node is a thin client and the heavy AI processing is done in a separate model server microservice. In practice, this means a miner process handles blockchain interactions (registering on Subtensor, listening for validator tasks, submitting answers) while delegating the code analysis to an HTTP microservice running the actual LLM model. The miner simply calls the microservice’s endpoint with the contract code, and the service returns the JSON results. This separation makes deployment and development easier: miners can update their AI model or even switch to a different AI backend without modifying Bittensor-specific code. The project provides a reference microservice implementation that uses a local LLM to perform audits, which developers can use out-of-the-box for testing. However, miners are encouraged to plug in their own models or even third-party AI APIs to gain a competitive edge, as long as they adhere to the predefined audit protocol (the JSON output schema and request handling). This plug-and-play model server approach abstracts the AI logic from the blockchain logic. It also means the system can quickly integrate improvements in AI – for example, a team could switch to a more powerful model (say, GPT-4 or a custom fine-tuned model) just by updating their microservice, without needing to alter how they interact with the subnet.
Audit Protocol & Structured Output: The communication between validators and miners follows a specific audit protocol. When a validator sends out a contract to audit, miners respond with a list of discovered issues formatted as an array of JSON objects. Each vulnerability report includes fields such as the source code line numbers where the issue occurs (from_line, to_line), the category of the vulnerability (e.g. Reentrancy, Integer Overflow, Unchecked Call), a test case or scenario illustrating the exploit, a detailed description of the problem, and optionally links to related known exploits (“prior art”). By enforcing this structure (defined in code via Pydantic models in the repository), the subnet ensures that results from different miners are comparable and can be programmatically verified by validators. It also simplifies integration of the output into developer tools; for instance, an IDE plugin or CI pipeline could consume this JSON to display warnings in code. The choice of JSON and fixed schema was likely made to handle machine-parsable results (for scoring and later automation) while still allowing rich, explanatory content (Markdown descriptions) for human developers to read.
Secure “Proof-of-Work” via NFTs: One of the most novel features of ReinforcedAI’s subnet is its solution to prevent cheating among miners. In earlier phases of Bittensor, a known issue was that a single team could copy one good model’s answers across many miner instances (“sybil” miners) to multiply rewards without extra work. ReinforcedAI implements a Proof-of-Work validation mechanism using NFTs (Non-Fungible Tokens) to thwart duplicate submissions. The concept is: each miner must produce a unique cryptographic proof of its work for every task, which is embedded in an NFT. Concretely, for each audit response, the miner generates an NFT on the Polkadot-based Unique Network blockchain that contains an encrypted hash or signature of its findings. Only the requesting validator (who holds a private key for that query) can decrypt and verify that the NFT’s data matches the response the miner gave. If a miner tried to copy another’s answer without actually computing it, it wouldn’t possess the correct proof to embed in the NFT, and the validator would detect the mismatch and refuse to score that response. Additionally, the NFT is tied to the miner’s identity (public key); a miner can’t reuse another miner’s proof. This effectively forces each miner to truly do the work for each audit – they must run their model and produce the corresponding NFT proof. The use of Unique Network’s NFT capabilities showcases cross-chain innovation: Bittensor’s subnet triggers NFT mints on a Polkadot parachain as a form of work certificate. The ReinforcedAI team had prior experience with advanced NFT use-cases, and they identified this as a “perfect match” to ensure fairness in their subnet. This mechanism is a significant technical achievement, reinforcing trust that the decentralized audit results are genuine and not simply replicated by lazy actors. It adds a slight overhead (minting an NFT per task), but greatly strengthens the integrity of the competition.
Relayer Component for Network Resilience: The architecture also introduces a Relayer – an intermediate node that sits between validators and miners to manage communications. In a typical Bittensor setup, validators would query miners directly via their Axon endpoints. ReinforcedAI uses a relayer to aggregate and control the flow of data. The relayer provides several benefits: it collects detailed metrics on which contracts were sent and what responses were given, helping track validator quality and miner performance over time (useful for diagnostics and improvement). It monitors validator activity to detect any anomalies or bias, thus adding transparency to the consensus process. The relayer also allows for protocol upgrades or changes without halting the whole network – for instance, if the team wants to update the audit protocol or scoring algorithm, the relayer can mediate between old and new versions, giving miners time to adapt (this is referred to as data filtering and normalization, and makes the subnet more flexible in the face of updates). Additionally, the relayer can act as a buffer: if a miner’s Axon (the networking server in Bittensor) is temporarily unavailable, the relayer can queue the validator’s request and forward it when the miner comes back online, improving reliability in a distributed setting. It also keeps track of miner availability to help distribute load and prevent any single miner from being overwhelmed by requests. In summary, the Relayer is a kind of traffic manager and data auditor for the subnet, ensuring that the interactions between miners and validators are smooth, transparent, and robust. This component isn’t present in all Bittensor subnets and reflects ReinforcedAI’s additional efforts to create a production-quality infrastructure suitable for something as critical as security audits.
On-Chain and Off-Chain Integration: The system spans multiple layers of blockchain technology. On-chain, the subnet operates within Bittensor’s Subtensor chain (a Substrate-based chain) where all miners and validators register and where TAO rewards are dispensed according to performance. The TAO token and Bittensor’s on-chain governance/consensus mechanisms (like the root subnet allocation of rewards to subnets, etc.) provide the economic security and incentive alignment. Off-chain, the actual AI heavy lifting is done by possibly large models (which could be hosted on GPUs, servers, or cloud). The integration with Unique Network is entirely off-chain from Bittensor’s perspective – it requires the miner to have credentials or access to mint an NFT on Unique’s chain (likely via Unique’s API or SDK). This cross-chain aspect highlights the interoperability: the audit subnet on one blockchain (Bittensor) utilizes the NFT ledger of another blockchain (Unique Network on Polkadot) to enhance its protocol. Additionally, development tooling from the Polkadot ecosystem is used (the team mentioned using Substrate and benefiting from its flexibility for this solution). The choice of Python for most of the implementation (miners, validators, microservices) makes it accessible to AI developers (since Python is the lingua franca for ML). Some components, like smart contract compilation or analysis helpers, use Solidity tooling (e.g. solc compiler). The project’s repository also contains a submodule for solc-ast (an AST parser for Solidity), indicating that part of the auditing process may involve static analysis or parsing of contract code structure in addition to pure LLM output. All together, ReinforcedAI’s architecture is an elegant blend of blockchain incentives (Subtensor + Unique NFTs) and AI microservices, orchestrated to yield a decentralized security analysis platform.
ReinforcedAI is built by a team of developers and researchers with deep backgrounds in both blockchain (Polkadot ecosystem) and AI. Notable team members include:
Andy Smith – Lead backend/blockchain developer. Andy has extensive experience with Polkadot and Substrate development. In fact, he contributed to Polkadot’s codebase; for example, he has commits enabling Unique Network features in the Polkadot-JS apps. His GitHub handle is uandysmith (often seen as “Andy Smith”), and he has been involved in building the Unique Network NFT chain and related tooling. With ReinforcedAI, Andy appears to be a core architect, leveraging his Polkadot know-how (e.g. integrating with Unique’s NFT palette) and ensuring the subnet adheres to best practices of decentralized networks. His prior work in Polkadot (circa 6 years) is referenced by the team, indicating he’s been in the blockchain space since around 2019.
Alexander Skvortsov – Lead AI/blockchain developer. Alexander is known by the handle ALFecki on GitHub and is identified as a contributor to the Solidity-Audit repository. He is a computer scientist (studying at Belarusian State University of Informatics and Radioelectronics). Alexander has worked on Unique Network projects as well (he follows the Unique Network GitHub and has contributed code there). In ReinforcedAI, he likely focuses on the integration of AI models and the development of the NFT Proof-of-Work system, given his interest in NFTs and Substrate. His role spans writing the miner/validator code (mostly Python) and possibly the custom protocol logic. The team’s Medium post explicitly credits them with creating the “Beadecker” CI tool widely used in
– while it’s not specified who “we” refers to, it’s likely Alexander and Andy were key in that contribution. (Beadecker is a continuous integration tool provided to the Bittensor community, demonstrating the team’s commitment and technical capability within the ecosystem.)
Other Contributors: The ReinforcedAI effort has attracted interest from multiple expert teams even outside the core founders. In their launch communications, they mentioned having “already attracted several such teams that have raised the bar of value added” – indicating that external security/AI experts are contributing miners. While not employees of ReinforcedAI, these contributors (possibly from established audit firms or independent researchers) effectively form a broader community around Subnet 92. The Open-Source nature of the project (the code is on GitHub under MIT License) means that anyone can review or improve the codebase. On social media, prominent Bittensor community members (e.g. @CryptoZPunisher on X) have helped explain and promote the project, suggesting a tight integration with the Bittensor developer community. The core team, however, remains relatively small and focused – they describe themselves as “a team that chooses what it does carefully, for the long term”, implying a dedicated, deliberate group rather than a large startup.
ReinforcedAI is built by a team of developers and researchers with deep backgrounds in both blockchain (Polkadot ecosystem) and AI. Notable team members include:
Andy Smith – Lead backend/blockchain developer. Andy has extensive experience with Polkadot and Substrate development. In fact, he contributed to Polkadot’s codebase; for example, he has commits enabling Unique Network features in the Polkadot-JS apps. His GitHub handle is uandysmith (often seen as “Andy Smith”), and he has been involved in building the Unique Network NFT chain and related tooling. With ReinforcedAI, Andy appears to be a core architect, leveraging his Polkadot know-how (e.g. integrating with Unique’s NFT palette) and ensuring the subnet adheres to best practices of decentralized networks. His prior work in Polkadot (circa 6 years) is referenced by the team, indicating he’s been in the blockchain space since around 2019.
Alexander Skvortsov – Lead AI/blockchain developer. Alexander is known by the handle ALFecki on GitHub and is identified as a contributor to the Solidity-Audit repository. He is a computer scientist (studying at Belarusian State University of Informatics and Radioelectronics). Alexander has worked on Unique Network projects as well (he follows the Unique Network GitHub and has contributed code there). In ReinforcedAI, he likely focuses on the integration of AI models and the development of the NFT Proof-of-Work system, given his interest in NFTs and Substrate. His role spans writing the miner/validator code (mostly Python) and possibly the custom protocol logic. The team’s Medium post explicitly credits them with creating the “Beadecker” CI tool widely used in
– while it’s not specified who “we” refers to, it’s likely Alexander and Andy were key in that contribution. (Beadecker is a continuous integration tool provided to the Bittensor community, demonstrating the team’s commitment and technical capability within the ecosystem.)
Other Contributors: The ReinforcedAI effort has attracted interest from multiple expert teams even outside the core founders. In their launch communications, they mentioned having “already attracted several such teams that have raised the bar of value added” – indicating that external security/AI experts are contributing miners. While not employees of ReinforcedAI, these contributors (possibly from established audit firms or independent researchers) effectively form a broader community around Subnet 92. The Open-Source nature of the project (the code is on GitHub under MIT License) means that anyone can review or improve the codebase. On social media, prominent Bittensor community members (e.g. @CryptoZPunisher on X) have helped explain and promote the project, suggesting a tight integration with the Bittensor developer community. The core team, however, remains relatively small and focused – they describe themselves as “a team that chooses what it does carefully, for the long term”, implying a dedicated, deliberate group rather than a large startup.
ReinforcedAI’s roadmap is focused on iterative development and integration of their subnet into real-world use cases, rather than fixed dated milestones. Having launched Subnet 92 in April 2025 (with the network now live on Bittensor’s mainnet for miners/validators to join), their next steps center on enhancing the subnet’s capabilities and proving its value:
Scaling and Quality Improvements: In the near term, the team will be monitoring the subnet’s performance closely and addressing any issues that arise. They have already tackled major incentive problems (like the copy-paste issue via NFTs) and will continue to refine the fairness and robustness of the network. This could include tweaking the scoring formulas, introducing more types of vulnerability challenges, and ensuring validators maintain high standards (possibly adding more monitoring via the relayer). They will also encourage more skilled teams to join as miners, increasing competition and model diversity. The goal is to ensure that for every category of smart contract bug, the subnet eventually has one or more models that excel at detecting it.
Evolving the AI Models: As the subnet runs, a valuable byproduct is a growing dataset of smart contracts and identified vulnerabilities. The team (and miners) can use this data to further train models, creating a virtuous cycle of learning. We can expect updates to the reference model or the recommended model architecture as new research comes in. For example, if a new large language model is particularly good at code analysis, the team might integrate it or suggest it to miners. They might also explore specialized fine-tuning of models on security-focused corpora (e.g. past audit reports, known vulnerabilities) to boost accuracy. Over time, the AI component will become more sophisticated, possibly incorporating ensemble techniques (multiple models voting) or domain-specific static analysis combined with ML. Being at the cutting edge, the team acknowledges “there’s no road ahead unless we make it” – meaning they are exploring uncharted territory and will adapt as they discover what works.
Building User-Facing Tools: While the subnet currently exists as a backend network, the vision for solutions on top of the subnet is beginning to form. In the medium to long term, ReinforcedAI may develop front-end applications or integrations that allow developers to directly leverage the subnet’s auditing power. This could take the form of a web dashboard where users can upload a Solidity contract and get an audit report, or a CI/CD integration (for example, a GitHub Action that runs the ReinforcedAI audit on each pull request of a smart contract repository). Given the team’s history with CI tools (Beadecker), integrating audits into development pipelines is a plausible direction. Another possibility is partnerships with existing audit firms or security platforms – the subnet could act as an automated first pass auditing tool, with firms using it to catch common issues before doing manual review. The team has hinted they will experiment with various go-to-market (GTM) strategies, acknowledging that some will fail and some will succeed, and that this experimental approach is “the only way to build a successful high tech startup”. This indicates they are actively thinking about commercializing or at least widely deploying the technology, beyond just mining on Bittensor.
Expanding Beyond Solidity: Currently, the focus is Solidity on Ethereum (by far the most widely used smart contract language). In the future, the project could expand to other smart contract platforms if demand arises – for example, auditing for Move (on Aptos/Sui), Cairo (Starknet), or Rust-based smart contracts (Solana, Ink, etc.). The “Solidity-Audit” subnet could evolve into a more general Web3 Security Audit subnet. However, any such expansion would require retraining models and possibly creating new subnets if the criteria differ greatly. As of now, sticking to Solidity provides plenty of scope, given the vast ecosystem of Ethereum and EVM-compatible chains.
Timeline and Milestones: The team has not published a strict timeline, but we can infer some upcoming milestones: (1) Short-term: Achieve a stable network with active participation (dozens of miners, reliable validator performance) and demonstrate that the AI audits find real issues. (2) Mid-term: Release at least one user-facing interface (e.g., an API or demo web app) to allow the broader community to test the AI audit results on arbitrary contracts. They might showcase comparisons of their AI findings with known audit reports as a benchmark. (3) Long-term: Integrate feedback from real-world usage to improve the service, and potentially formalize a DAO or governance around the subnet (since Bittensor allows subnet owners and communities to shape parameters). Also, because the project leverages a lot of Polkadot tech (Unique Network), a future milestone might involve closer integration with Polkadot or even launching a parachain or sidechain dedicated to audit data. For now, though, the focus is firmly on Bittensor as the home.
The ReinforcedAI team emphasizes a step-by-step, adaptive approach: “we will make it step by step and will pivot at every corner”, and they caution that one should “expect a number of [experiments] to fail, until we find one that works”. This mindset suggests that the roadmap is not a rigid set of promises but rather a dynamic trajectory guided by research breakthroughs and user needs. In other words, ReinforcedAI is committed to the long-term vision of AI-driven auditing and is prepared to navigate through uncertainty to achieve it.
ReinforcedAI’s roadmap is focused on iterative development and integration of their subnet into real-world use cases, rather than fixed dated milestones. Having launched Subnet 92 in April 2025 (with the network now live on Bittensor’s mainnet for miners/validators to join), their next steps center on enhancing the subnet’s capabilities and proving its value:
Scaling and Quality Improvements: In the near term, the team will be monitoring the subnet’s performance closely and addressing any issues that arise. They have already tackled major incentive problems (like the copy-paste issue via NFTs) and will continue to refine the fairness and robustness of the network. This could include tweaking the scoring formulas, introducing more types of vulnerability challenges, and ensuring validators maintain high standards (possibly adding more monitoring via the relayer). They will also encourage more skilled teams to join as miners, increasing competition and model diversity. The goal is to ensure that for every category of smart contract bug, the subnet eventually has one or more models that excel at detecting it.
Evolving the AI Models: As the subnet runs, a valuable byproduct is a growing dataset of smart contracts and identified vulnerabilities. The team (and miners) can use this data to further train models, creating a virtuous cycle of learning. We can expect updates to the reference model or the recommended model architecture as new research comes in. For example, if a new large language model is particularly good at code analysis, the team might integrate it or suggest it to miners. They might also explore specialized fine-tuning of models on security-focused corpora (e.g. past audit reports, known vulnerabilities) to boost accuracy. Over time, the AI component will become more sophisticated, possibly incorporating ensemble techniques (multiple models voting) or domain-specific static analysis combined with ML. Being at the cutting edge, the team acknowledges “there’s no road ahead unless we make it” – meaning they are exploring uncharted territory and will adapt as they discover what works.
Building User-Facing Tools: While the subnet currently exists as a backend network, the vision for solutions on top of the subnet is beginning to form. In the medium to long term, ReinforcedAI may develop front-end applications or integrations that allow developers to directly leverage the subnet’s auditing power. This could take the form of a web dashboard where users can upload a Solidity contract and get an audit report, or a CI/CD integration (for example, a GitHub Action that runs the ReinforcedAI audit on each pull request of a smart contract repository). Given the team’s history with CI tools (Beadecker), integrating audits into development pipelines is a plausible direction. Another possibility is partnerships with existing audit firms or security platforms – the subnet could act as an automated first pass auditing tool, with firms using it to catch common issues before doing manual review. The team has hinted they will experiment with various go-to-market (GTM) strategies, acknowledging that some will fail and some will succeed, and that this experimental approach is “the only way to build a successful high tech startup”. This indicates they are actively thinking about commercializing or at least widely deploying the technology, beyond just mining on Bittensor.
Expanding Beyond Solidity: Currently, the focus is Solidity on Ethereum (by far the most widely used smart contract language). In the future, the project could expand to other smart contract platforms if demand arises – for example, auditing for Move (on Aptos/Sui), Cairo (Starknet), or Rust-based smart contracts (Solana, Ink, etc.). The “Solidity-Audit” subnet could evolve into a more general Web3 Security Audit subnet. However, any such expansion would require retraining models and possibly creating new subnets if the criteria differ greatly. As of now, sticking to Solidity provides plenty of scope, given the vast ecosystem of Ethereum and EVM-compatible chains.
Timeline and Milestones: The team has not published a strict timeline, but we can infer some upcoming milestones: (1) Short-term: Achieve a stable network with active participation (dozens of miners, reliable validator performance) and demonstrate that the AI audits find real issues. (2) Mid-term: Release at least one user-facing interface (e.g., an API or demo web app) to allow the broader community to test the AI audit results on arbitrary contracts. They might showcase comparisons of their AI findings with known audit reports as a benchmark. (3) Long-term: Integrate feedback from real-world usage to improve the service, and potentially formalize a DAO or governance around the subnet (since Bittensor allows subnet owners and communities to shape parameters). Also, because the project leverages a lot of Polkadot tech (Unique Network), a future milestone might involve closer integration with Polkadot or even launching a parachain or sidechain dedicated to audit data. For now, though, the focus is firmly on Bittensor as the home.
The ReinforcedAI team emphasizes a step-by-step, adaptive approach: “we will make it step by step and will pivot at every corner”, and they caution that one should “expect a number of [experiments] to fail, until we find one that works”. This mindset suggests that the roadmap is not a rigid set of promises but rather a dynamic trajectory guided by research breakthroughs and user needs. In other words, ReinforcedAI is committed to the long-term vision of AI-driven auditing and is prepared to navigate through uncertainty to achieve it.
Keep ahead of the Bittensor exponential development curve…
Subnet Alpha is an informational platform for Bittensor Subnets.
This site is not affiliated with the Opentensor Foundation or TaoStats.
The content provided on this website is for informational purposes only. We make no guarantees regarding the accuracy or currency of the information at any given time.
Subnet Alpha is created and maintained by The Realistic Trader. If you have any suggestions or encounter any issues, please contact us at [email protected].
Copyright 2024