CLI for Namada

Wallet Operations

Create a new key:

KEY_ALIAS="your_wallet"; namada wallet key gen --alias $KEY_ALIAS

Restore executed key:

namada wallet key restore --alias $KEY_ALIAS --hd-path default

Check your address wallet:

namada wallet address find --alias $KEY_ALIAS

Check Wallet Balances:

namada client balance --owner $KEY_ALIAS

Check All Wallet Address:

namada wallet key list

Send a Transactions:

namada client transfer --source <SENDER_ADDRESS> --target <RECEIVER_ADDRESS> --token NAM --amount 10 --signing-keys $KEY_ALIAS

Validator Operations

check sync status and node info:

curl http://127.0.0.1:26657/status | jq

check balance:

check keys:

stake funds:

check your validator bond status:

check all bonded nodes:

find all the slashes:

non-self unbonding:

self-unbonding:

withdrawing unbonded tokens:

Find Your Validator:

Check epoch:

Sync and Consensus

check logs:

check sync status and node info:

check consensus state:

full consensus state:

your validator votes (prevote):

Last updated