Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 1.61 KB

README.md

File metadata and controls

73 lines (54 loc) · 1.61 KB

Jungoai CLI

Discord Chat License: MIT


installation

Install rye:

curl -sSf https://rye.astral.sh/get | bash

Then install Jungo-cli via rye:

rye install jungo-cli --git https://github.com/jungoai/jungo-cli.git

Verify the installation

jucli --version

The above command will show you the version of the jucli you just installed.


Configuration

You can set the commonly used values, such as your hotkey and coldkey names, the default chain URL or the network name you use, and more, in config.yml. You can override these values by explicitly passing them in the command line for any jucli command.

Example config file

The default location of the config file is: ~/.jungoai/config.yml. An example of a config.yml is shown below:

chain: ws://127.0.0.1:9945
network: local
no_cache: False
wallet_hotkey: hotkey-user1
wallet_name: coldkey-user1
wallet_path: ~/.jungoai/wallets
metagraph_cols:
  ACTIVE: true
  AXON: true
  COLDKEY: true
  CONSENSUS: true
  DIVIDENDS: true
  EMISSION: true
  HOTKEY: true
  INCENTIVE: true
  RANK: true
  STAKE: true
  TRUST: true
  UID: true
  UPDATED: true
  VAL: true
  VTRUST: true

For more help:

jucli config --help