CLI for Namada
Wallet Operations
Create a new key:
KEY_ALIAS="your_wallet"; namada wallet key gen --alias $KEY_ALIASRestore executed key:
namada wallet key restore --alias $KEY_ALIAS --hd-path defaultCheck your address wallet:
namada wallet address find --alias $KEY_ALIASCheck Wallet Balances:
namada client balance --owner $KEY_ALIASCheck All Wallet Address:
namada wallet key listSend a Transactions:
namada client transfer --source <SENDER_ADDRESS> --target <RECEIVER_ADDRESS> --token NAM --amount 10 --signing-keys $KEY_ALIASValidator Operations
check sync status and node info:
curl http://127.0.0.1:26657/status | jqcheck 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