Loading
Loading

Real-time market intelligence across equities, FX, crypto, commodities and indices. AlphaRidge reads the conversations of 1,000+ news sources, X posts, Telegram feeds, scoring every post into structured signals: sentiment, impact, market outlook and more. See the why behind every move, screen any market, and get alerted the moment sentiment turns.
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.
~44 GB of models downloads on first run. NER stage is CPU-heavy; core count determines throughput and earnings. Miner must return batches within lease TTL or they go back to queue.
Same analyzer as miner; identical hardware requirements. Runs validation sample audits concurrently with 2-8 worker threads. Must maintain reputation store, broadcast channels, and liveness roster.
Clone the repository
git clone https://github.com/Team-Rizzo/alpharidge-ai.git && cd alpharidge-ai
Create and activate Python virtual environment
python3.12 -m venv .venv && source .venv/bin/activate
Run installation script (default CUDA 12.8; use TORCH_INDEX env var for other CUDA versions)
./install.sh
Copy template configuration file
cp miner_env.example .miner_env
Configure OpenRouter API key (main running cost); other settings have safe defaults
Edit .miner_env and set API_KEY to your OpenRouter key (sk-or-...)
Register your hotkey on subnet 45
btcli subnet register --netuid 45 --wallet.name <coldkey> --wallet.hotkey <hotkey>
Start the miner (add --axon.external_ip and --axon.external_port if behind NAT)
.venv/bin/python -m neurons.miner --netuid 45 --wallet.name <coldkey> --wallet.hotkey <hotkey> --logging.info
Clone the repository
git clone https://github.com/Team-Rizzo/alpharidge-ai.git && cd alpharidge-ai
Create and activate Python virtual environment
python3.12 -m venv .venv && source .venv/bin/activate
Run installation script (default CUDA 12.8)
./install.sh
Copy template configuration file
cp vali_env.example .vali_env
Configure OpenRouter API key; MODEL, LLM_BASE, MINER_API_URL are pre-filled
Edit .vali_env and set API_KEY to your OpenRouter key (sk-or-...)
Register your hotkey on subnet 45
btcli subnet register --netuid 45 --wallet.name <coldkey> --wallet.hotkey <hotkey>
Start the validator
.venv/bin/python -m neurons.validator --netuid 45 --subtensor.network finney --wallet.name <coldkey> --wallet.hotkey <hotkey> --logging.info
Optional: run under PM2 with auto-updater(optional)
python3 scripts/start_validator.py --pm2_name sn45vali -- --netuid 45 --logging.info