Subnet 90 ("Brain") leverages Bittensor's distributed intelligence to resolve prediction market statements through consensus-driven verification.
Prediction markets submit unresolved statements to the DegenBrain API
Miners analyze statements using AI agents and external data sources
Validators aggregate responses using confidence-weighted voting
Final verdict returned, miners rewarded based on accuracy
# Update system and install Python 3.11 + dev tools
sudo apt update && sudo apt upgrade -y
sudo apt install python3.11 python3.11-venv python3.11-dev git curl build-essential -y
git clone https://github.com/degenpredict/bittensor-subnet-90-brain.git
cd bittensor-subnet-90-brain
# Create and activate virtual environment
python3.11 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
# Install PyTorch CPU version first (critical - prevents startup hangs)
pip install torch==2.7.1 --index-url https://download.pytorch.org/whl/cpu
# Install everything else
pip install -r requirements.txt
# Create coldkey first (your main wallet - keep this secure!)
btcli wallet new_coldkey --wallet.name my_wallet
# Create hotkey for first miner
btcli wallet new_hotkey --wallet.name my_wallet --wallet.hotkey miner_1
# Register on subnet (costs ~1 TAO each)
btcli subnets register --netuid 90 --wallet.name my_wallet --wallet.hotkey miner_1
# Optional: Create additional miners/validators and register them
# btcli wallet new_hotkey --wallet.name my_wallet --wallet.hotkey miner_2
# btcli subnets register --netuid 90 --wallet.name my_wallet --wallet.hotkey miner_2
# btcli wallet new_hotkey --wallet.name my_wallet --wallet.hotkey validator
# btcli subnets register --netuid 90 --wallet.name my_wallet --wallet.hotkey validator
# Copy configuration template
cp .env.example .env
Your .env file will contain these default names:
WALLET_NAME=my_wallet
HOTKEY_NAME=miner_1
If you used different names, edit with: nano .env
# Start all processes with available hotkeys
pm2 start ecosystem.config.js
# Check status
pm2 status
pm2 logs
pm2 restart ecosystem.config.js # Restart all
pm2 stop all # Stop all
pm2 logs miner_1 # View specific logs
pm2 monit # Real-time monitoring
pm2 status
pm2 logs
pm2 stop all
@_enzi_
$BRAIN is the native token of Subnet 90, representing stake and governance rights in the DegenBrain verification network. It's a subnet token on the Bittensor network.
The $BRAIN alpha token will earn from the degenpredict.com fees - 30% of the fee will buy $BRAIN allocated to the DAO strategic reserve. More details at https://degenpredict.com/token.
Purchase TAO (Bittensor's main token) from exchanges like Gate.io or MEXC
Install btcli and create a wallet: btcli wallet create
Visit TAOstats Subnet 90 and connect your wallet
Explore validators, miners, and delegation options for $BRAIN
Delegate your TAO to validators to earn $BRAIN emissions
Note: $BRAIN represents your stake in Subnet 90. By delegating TAO to subnet validators, you earn a share of the subnet's emissions proportional to your stake.
Start mining, validating, or investing in the future of decentralized prediction market resolution.