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 require a certain amount of Alpha staked (currently 192 Alpha + 64 Alpha paid). Multiple miners can run on one machine with different ports.
Install system dependencies and PM2 process manager
sudo apt update && sudo apt install npm -y && sudo npm install pm2 -g
Clone the subnet repository
git clone https://github.com/mobiusfund/investing && cd investing
Create and activate Python virtual environment(optional)
python -m venv .venv && . .venv/bin/activate
Install the subnet package in editable mode
python -m pip install -e .
Start the miner with PM2, replacing {coldkey} and {hotkey} with actual wallet credentials
pm2 start neurons/miner.py --name investing-miner -- --wallet.name {coldkey} --wallet.hotkey {hotkey} --netuid 88Install system dependencies and PM2 process manager
sudo apt update && sudo apt install npm -y && sudo npm install pm2 -g
Clone the subnet repository
git clone https://github.com/mobiusfund/investing && cd investing
Create and activate Python virtual environment(optional)
python -m venv .venv && . .venv/bin/activate
Install the subnet package in editable mode
python -m pip install -e .
Start the validator with PM2, replacing {coldkey} and {hotkey} with actual wallet credentials
pm2 start neurons/validator.py --name investing-validator -- --wallet.name {coldkey} --wallet.hotkey {hotkey} --netuid 88