Loading
Loading

A competition where miners submit containerized inference servers to compete on speed and correctness when serving an open-source model
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.
Bitcoin mining hardware (ASICs, GPUs, etc.) OR access to remote hashrate (NiceHash, MiningRigRentals). Python 3.9+ required for pool configuration tool.
Validators evaluate miners and distribute rewards. Requires sufficient stake weight on Bittensor network.
Check existing Bittensor wallet or create one with coldkey and hotkey
btcli wallet list
Verify wallet balance on finney network
btcli wallet balance --wallet.name <your wallet name> --network finney
Register on subnet 14 mainnet (required for Alpha token rewards; optional for TIDES BTC rewards)(optional)
btcli subnet register --netuid 14 --wallet.name <YOUR_WALLET> --wallet.hotkey <YOUR_HOTKEY> --network finney
Clone repository and install TAOHash package
git clone https://github.com/latent-to/taohash.git && cd taohash && pip install -e .
Get pool configuration and mining credentials (worker name, pool URL, password)
python taohash/miner/miner.py --wallet.name <YOUR_WALLET> --wallet.hotkey <YOUR_HOTKEY> --subtensor.network finney --btc_address <YOUR_BTC_ADDRESS>
Point mining hardware to TAOHash pool using obtained credentials
Configure ASIC/GPU miner with pool URL, worker name, and password from step 5
Track mining performance, hashrate, share value, and ranking(optional)
Monitor at https://taohash.com/leaderboard
Check existing Bittensor wallet or create one with coldkey and hotkey
btcli wallet list
Verify wallet balance and sufficient stake weight on finney network
btcli wallet balance --wallet.name <your wallet name> --network finney
Register on subnet 14 mainnet
btcli subnet register --netuid 14 --wallet.name YOUR_WALLET --wallet.hotkey YOUR_HOTKEY --network finney
Obtain proxy credentials from subnet maintainers for BTC and BCH pool evaluation
Contact TAOHash Discord channel for subnet proxy credentials (BTC and BCH API URLs and tokens)
Clone repository, create virtual environment, and install TAOHash package
git clone https://github.com/latent-to/taohash.git && cd taohash && python3 -m venv venv && source venv/bin/activate && pip install -e .
Create and configure .env file with wallet credentials and proxy API URLs/tokens for BTC and BCH
cp .env.validator.example .env && nano .env
Start validator using Docker Compose (recommended method with automatic updates via Watchtower)
docker compose down && docker compose pull && docker compose up -d && docker compose logs -f