Skip to content
Minotaur
+ 04 · Operator

Network Reference

Single source of truth for Subnet 112 operator-facing addresses, endpoints, and cluster expectations.

Single source of truth for operator-facing addresses and endpoints. Use this page when configuring a new validator or miner against the live network.

Bittensor

ItemValue
Netuid112
Networkfinney
Subtensor endpointwss://entrypoint-finney.opentensor.ai:443
Public BT EVM RPChttps://lite.chain.opentensor.ai (chain 964)

Register a hotkey:

Terminal window
btcli subnet register --netuid 112 --subtensor.network finney \
--wallet.name <YOUR_WALLET> --wallet.hotkey <YOUR_HOTKEY>

Production API

ItemValue
API endpoint<PRODUCTION_API_URL> (see project announcement channel)
Frontend<PRODUCTION_FRONTEND_URL>

Miners pointing the agent loop at production use --validator-url <PRODUCTION_API_URL> instead of http://localhost:8080. The current URL is published via the project announcement channel — check the project README for the active contact / status page. Don’t hardcode a URL from a stale doc cache.

Mainnet contract addresses

Base (chain 8453)

ContractAddressValid since
ValidatorRegistry0x88a08d1105393EACE9B6f5ff678DbE508B8639aC2026-05-21
AppRegistry0x0B5fE44e90515571761D86C28c4855F325EDE0982026-05-19 (state preserved across the 2026-05-21 refactor)
DexAggregatorApp0x0AeA6Ab70B384ADC6493d40e927ce53A7cefE0352026-05-21

Bittensor EVM (chain 964)

ContractAddressValid since
ValidatorRegistry0x0B5fE44e90515571761D86C28c4855F325EDE0982026-05-21
ChampionRegistry0x33105027d03e76bf1F3679C0CB9b2688da383fb32026-05-21
AppRegistry0x80758D3Bf11715c82dB9964C634d5Fd8a0C58aBF2026-05-19

ChampionRegistry holds its own independent quorumBps for champion-certification consensus. The validator-side env var CHAMPION_QUORUM_BPS should mirror whatever this returns (currently 6666):

Terminal window
cast call $CHAMPION_REGISTRY 'quorumBps()(uint256)' \
--rpc-url https://lite.chain.opentensor.ai

Ethereum mainnet (chain 1)

The platform supports Ethereum mainnet execution, but the canonical DexAggregatorApp deployment currently lives on Base. ValidatorRegistry on Ethereum mainnet is TBD — operators running only Base do not need it; operators planning to support ETH-mainnet flows should ask before assuming an address.

Cluster expectations

MetricCurrent target
Active validator count3 (post-refactor migration may grow this)
Quorum threshold (quorumBps on ValidatorRegistry)6666 (2-of-3 BFT). Read live with cast call $VALIDATOR_REGISTRY 'quorumBps()(uint256)' --rpc-url $BASE_RPC.
Champion quorum (quorumBps on ChampionRegistry)6666 — mirror with CHAMPION_QUORUM_BPS
Tick interval12s (matches Ethereum block time)
Weight emission cadence1200s (20 min) — matches Bittensor’s weights_set_rate_limit of 100 blocks. Pass --epoch-seconds 1200 to the validator daemon. The 60s default spam-rejects ~95% of attempts on subnet 112.
ProtocolConfig refresh cadence60s — how often the daemon re-reads quorumBps and the validator set from ValidatorRegistry. Independent of weight emission.
Stake requirement for emissionsTBD — set by Bittensor subnet rules; check current metagraph output
Dethrone margin (champion-takes-all)DETHRONE_MARGIN = 0.005 (challenger must beat champion by 0.5%)
Miner emissions at Alpha launch5% (ramps as the network proves out)

Onboarding handshake

New validators need their EVM signing address added to the on-chain ValidatorRegistry on every chain they operate on. See the Validator Quickstart Step 4 for the required information and the cast commands the registry owner runs to add you.

After the on-chain handshake, your daemon’s signatures count toward order-consensus quorum and your hotkey can be assigned to the leader role when stake rotation puts you on top.

Operational runbooks