The Hetu CLI, hetucli, is a powerful command line tool for interacting with the Hetu blockchain. You can use it on any macOS, Linux, or WSL terminal to manage wallets, transfer HETU, query balances, interact with smart contracts, and more. Help information can be invoked for every command and option with --help.
Installation steps are described below. For full documentation on how to use hetucli, see the Hetu CLI section on the developer documentation site.
- Wallet management (create, query balance, export private key)
- HETU transfer, signing, send transaction
- Query on-chain balance
- Contract call (read-only)
- Command line powered by Typer
You can install hetucli on your local machine directly from source or PyPI. Make sure you verify your installation after you install:
Install from PyPI
Run
pip install -U hetu-pycli
hetucli --help- Clone the Hetu CLI repo.
git clone https://github.com/hetu-project/hetu-pycli.gitcdintohetu-pyclidirectory.
cd hetu-pycli- Create and activate a virtual environment.
make init-venv- Install dependencies and the CLI:
Using Poetry
pip install -U pip setuptools poetry
poetry installOr, using Pip:
pip install .You can invoke the CLI using the following command:
python -m hetu_pycli.cli --helpOr, if installed as a script:
hetucli --helphetucli wallet create
hetucli wallet balance <address> --rpc <rpc_url>hetucli tx send --private-key <key> --to <address> --value <hetu> --rpc <rpc_url>Set the contract address
hetucli c set whetu_address <address>
hetucli c set staking_address <address>
hetucli c set subnet_address <address>
hetucli c set neuron_address <address>
hetucli c set amm_address <address>hetucli w import <private-key> --name test0
hetucli whetu deposit --sender test0 --value 1000
hetucli whetu balance-of test0
hetucli subnet get-network-lock-cost
hetucli whetu approve --spender <subnet_address> --value 100 --sender test0
hetucli subnet update-network-params --network-min-lock 100000000000000000000 --network-rate-limit 1 --lock-reduction-interval 10000 --sender <address>
hetucli subnet regist --sender test0 --name "AI Vision" --description "Computre vision and image processing network" --token-name "VISION" --token-symbol "VIS"hetucli whetu approve --spender <stake_address> --value 100 --sender test0
hetucli stake add-stake --sender test0 --amount 100
hetucli stake total-staked
hetucli stake allocate-to-subnet --netuid 1 --sender test0 --amount 50
hetucli neuron regist --sender test0 --netuid 1 --is-validator-role --axon-endpoint "http://my-node.com" --axon-port 8080 --prometheus-endpoint "http://my-metrics.com" --prometheus-port 9090hetucli subnet subnet-info --netuid 1
hetucli c set amm_address <amm_pool_address>
hetucli amm pool-info
hetucli whetu approve --spender 0xa16E02E87b7454126E5E10d957A927A7F5B5d2be --value 100 --sender test0
hetucli amm swap-hetu-for-alpha --hetu-amount-in 100 --alpha-amount-out-min 0 --sender test0 --to <to-address>hetucli whetu deposit --contract <address> --sender <address> --value <amount>
hetucli whetu withdraw --contract <address> --sender <address> --amount <amount>
hetucli whetu balance-of --contract <address> --account <address>
hetucli whetu transfer --contract <address> --to <address> --value <amount> --sender <address>
hetucli whetu approve --contract <address> --spender <address> --value <amount> --sender <address>
hetucli whetu total-eth --contract <address>
hetucli whetu total-supply --contract <address>
hetucli whetu nonces --contract <address> --owner <address>hetucli stake total-staked --contract <address>
hetucli stake add-stake --contract <address> --sender <address> --amount <amount>
hetucli subnet next-netuid --contract <address>
hetucli subnet register-network --contract <address> --sender <address> --name ... --description ... --token-name ... --token-symbol ...
hetucli amm alpha-price --contract <address>
hetucli amm swap-hetu-for-alpha --contract <address> --sender <address> --hetu-amount-in <amount> --alpha-amount-out-min <amount> --to <address>hetucli contract call --address <contract_addr> --abi-path <abi.json> --function <fn> --args "1,2,3" --rpc <rpc_url>To run the tests, ensure you have the Hetu CLI installed and configured. Then, execute:
poetry run pytest testsThis project is licensed under the MIT License.