Loading
Loading
This information was auto-extracted from the GitHub repository and may be incomplete or out of date. Always refer to the subnet's GitHub repository for the latest instructions.
Miners maintain per-coldkey state directories and connect to configured Bittensor network endpoints. Async operations require event loop availability.
Validators coordinate multi-epoch pipeline (auction, clearing, commitment, settlement) and maintain metagraph synchronization under RPC locks.
Install core dependencies including bittensor, substrate-interface, and logging utilities
pip install -r requirements.txt
Run the miner entry point with configuration loaded from bittensor_config
python3 -m metahash.scripts.run_miner
Optional: Enable debug mode for async operation tracing and fault handling(optional)
export METAHASH_DEBUG_ASYNC=1
Set bidding control limits and auto-sell parameters in miner configuration(optional)
Configure config parameters: bidding.max_total_alpha, autosell.enabled, autosell.subnet_id
Install core dependencies including bittensor, substrate-interface, and protocol dependencies
pip install -r requirements.txt
Run the validator entry point with configuration loaded from bittensor_config
python3 -m metahash.scripts.run_validator
Set up YAML-based subnet weights and capital allocation parameters via STRATEGY_PATH
Configure weights.yml with subnet allocation strategy
Optional: Enable testing mode for preview-only settlement without on-chain weight setting(optional)
export TESTING=true