Metadata-Version: 2.1
Name: hetu-pycli
Version: 0.1.0
Summary: A command-line interface for Hetu Chain interactions
Home-page: https://github.com/hetu-project/hetu-pycli
Author: Hetu Protocol
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: pytest (>=8.4.1,<9.0.0)
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: rich (>=14.0.0,<15.0.0)
Requires-Dist: typer (>=0.16.0,<0.17.0)
Requires-Dist: web3 (>=7.12.0,<8.0.0)
Description-Content-Type: text/markdown

<div align="center">

# Hetu Chain CLI <!-- omit in toc -->
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Twitter](https://img.shields.io/badge/Twitter-@hetu_protocol-1DA1F2?logo=twitter&logoColor=white)](https://x.com/hetu_protocol)
<!-- [![PyPI version](https://badge.fury.io/py/hetu_pycli.svg)](https://badge.fury.io/py/hetu_pycli) -->

---

### Causality Graph Future In Web3 

 [SDK](https://github.com/hetu-project/hetu-pysdk) • [Chain](https://github.com/hetu-project/hetu-chain) • [Research](https://docsend.com/v/jt55f/hetu_litepaper)


</div>

---

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`.

## Documentation

Installation steps are described below. For full documentation on how to use `hetucli`, see the [Hetu CLI section](https://github.com/hetu-project/hetu-pycli#readme) on the developer documentation site.

---

## Features
- 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

---

## Install on macOS and Linux

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](https://pypi.org/project/hetu-pycli/)

Run
```bash
pip install -U hetu-pycli
```

### Install from source

1. Clone the Hetu CLI repo.

```bash
git clone https://github.com/hetu-project/hetu-pycli.git
```

2. `cd` into `hetu-pycli` directory.

```bash
cd hetu-pycli
```

3. Create and activate a virtual environment.

```bash
make init-venv
```
4. Install dependencies and the CLI:

Using Poetry
```bash
pip install -U pip setuptools poetry
poetry install
```

Or, using Pip:
```bash
pip install .
```


---

## Usage

You can invoke the CLI using the following command:

```bash
python -m hetu_pycli.cli --help
```

Or, if installed as a script:

```bash
hetucli --help
```

### Wallet management
```bash
hetucli wallet create
hetucli wallet balance <address> --rpc <rpc_url>
```

### Transfer
```bash
hetucli tx send --private-key <key> --to <address> --value <hetu> --rpc <rpc_url>
```

### Configuration

Set the contract address

```bash
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>
```

### Main Process(New,Staking,Swap)

#### New A Subnet

```bash
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"
```
#### Staking and Participation

```bash
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 9090
```

#### Trading Subnet Tokens

```bash
hetucli 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>
```

### WHETU

```bash
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>
```

### Staking, Subnet, Swap

```bash
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>
```

### Contract call
```bash
hetucli contract call --address <contract_addr> --abi-path <abi.json> --function <fn> --args "1,2,3" --rpc <rpc_url>
```

---

## Running Tests & Development
To run the tests, ensure you have the Hetu CLI installed and configured. Then, execute:

```bash
poetry run pytest tests
```

---

## License

This project is licensed under the MIT License.

