> For the complete documentation index, see [llms.txt](https://tabichain.gitbook.io/tabichain/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tabichain.gitbook.io/tabichain/developer-guide/nodes/full-node-command-line-mannual.md).

# Full node command line manual

### Key(wallet) management

#### List all wallets

```shell
   tabid keys list
```

#### Create a wallet

```shell
   tabid keys add node0          // here "node0" is your wallet name
```

#### Delete a wallet

```shell
   tabid keys delete node0       // here "node0" is your wallet name
```

#### Export a wallet

```shell
   tabid keys export node0       // here "node0" is your wallet name
```

#### Recover a wallet from mnemonic

```shell
   tabid  keys add node0 --recover
```

### Bank

#### Transfer

* Usage:

  tabid tx bank send *from-address* *to-address* *amount* \[flags]
* Example:

```shell
   tabid tx bank send from_address \
   to_address \
   10000000000000000000atabi \
   --chain-id tabi_9788-2 \
   -y -b block \
   --fees 4000000000000000atabi
```

#### Balance

* Usage

  tabid q bank balances *your-address*
* Example:

```shell
tabid q bank balances tabis1yyxltd3hkz97g75w6neu7xa2djx4wu4er5jcsq
```

### Staking

#### Create a validator

* Example

```shell
   tabid tx staking create-validator \
   --amount=100000000000000000000atabi \
   --pubkey=$(tabid tendermint show-validator) \
   --moniker="node1" \
   --chain-id=tabi_9788-2 \
   --commission-rate="0.10" \
   --commission-max-rate="0.20" \
   --commission-max-change-rate="0.01" \
   --min-self-delegation="100" \
   --gas=2000000 \
   --from=node0 \
   -y -b block --fees 4000000000000000atabi
```

#### Query all validators

* Example:

```shell
   tabid q staking validators
```

#### Stake

* Example:

```shell
   tabid tx staking delegate tabisvaloper184wyej6rgvtgm783mvcmwntwcq9wpr27uu3a2d 1000000000000000000000atabi --chain-id tabi_9788-2 -y -b block --fees 6000000000000000atabi --from=test1
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tabichain.gitbook.io/tabichain/developer-guide/nodes/full-node-command-line-mannual.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
