reinforcedai/solidity-audit

By reinforcedai

Updated about 1 year ago

The simplest (and best) way to run a validator on SN92 is using Docker.

Image
Security
Machine learning & AI
0

10K+

reinforcedai/solidity-audit repository overview

Solidity Audit Docker

The simplest (and best) way to run a validator on SN92 is using Docker. The validator code will update automatically, so you’ll always stay up to date and maintain a good vtrust.

Important note: services must include restart: unless-stopped because the container may shut down occasionally (this is also required for auto-updating).

To run the validator, you’ll also need an API key from OpenRouter.

docker-compose.yml example

services:
  validator-server:
    image: reinforcedai/solidity-audit
    container_name: validator-server
    environment:
      OPEN_ROUTER_API_KEY: 'sk-or-v1-xxxx (Your real OpenRouter key)'
      NETWORK_TYPE: 'mainnet'
      SA_SERVICE: 'validator_model_server'
    restart: unless-stopped
    networks:
      - solidity-audit

  validator-uid-x:
    image: reinforcedai/solidity-audit
    container_name: validator-uid-x
    environment:
      MNEMONIC_HOTKEY: '//Alice (your real hotkey)'
      CHAIN_ENDPOINT: 'wss://entrypoint-finney.opentensor.ai:443/'
      MODEL_SERVER: 'http://validator-server:5000'
      NETWORK_TYPE: 'mainnet'
      SA_SERVICE: 'validator'
    restart: unless-stopped
    networks:
      - solidity-audit

networks:
  solidity-audit:

Tag summary

Content type

Image

Digest

sha256:0cd922028

Size

92.3 MB

Last updated

about 1 year ago

docker pull reinforcedai/solidity-audit:2507.10