Run Worker node

Pre requirements

Before continuing make sure you have met Registering UID.

You need to have rye on your system.
You can install it by running curl -sSf https://rye.astral.sh/get | bash.

To demonstrate how to run a monitor node, we are going to do it on subnet 1001 (echo subnet) on devnet as an example.

Install/Update echo-subnet:

rye tools install -f echo-subnet --git https://github.com/jungoai/jungo-echo-subnet.git

Run echo-monitor:

echo-worker \
  --ip            <your-public-host-ip> \
  --port          <your-host-port>      \
  --wallet.name   <your-coldkey>        \
  --wallet.hotkey <your-hotkey>         \
  --netuid        1001                  \
  --chain         wss://devnet-rpc.jungoai.xyz \
  --logging.debug

The above command will run echo-worker on the UID that registered by coldkey and hotkey.

Add stake to your hotkey (replace 100 with amount you want in JUNGO):

jucli stake add --amount 100 --name <your-coldkey> --hotkey <your-hotkey> --chain devnet

Check your node after a while:

jucli wallet overview --name <your-coldkey> --chain devnet