Useful Commands

✅ Node Status

Check Node Status:

curl localhost:26657/status | jq

Check Node Protocol Version:

curl -s localhost:26657/status | jq -r '.result.node_info.protocol_version.p2p'

Check Node ID:

curl -s localhost:26657/status | jq -r '.result.node_info.id'

Check Node Listen Address:

curl -s localhost:26657/status | jq -r '.result.node_info.listen_addr'

Check Network Name:

curl -s localhost:26657/status | jq -r '.result.node_info.network'

Check Node Version:

curl -s localhost:26657/status | jq -r '.result.node_info.version'

Check Node Moniker:

curl -s localhost:26657/status | jq -r '.result.node_info.moniker'

Check RPC Address:

curl -s localhost:26657/status | jq -r '.result.node_info.other.rpc_address'

Check Latest Block Height:

Check If Node is Catching Up:

Check Node Peers:

Check Block Information:

Check Blockchain Information:

Check Mempool Information:

Check Consensus State:

heck Health Status:

✅ Address and Wallet

namada wallet = namadaw

Generate a New Wallet:

Derive Key from Mnemonic or Hardware Wallet:

Generate a Payment Address:

List Known Keys and Addresses:

Find Known Keys and Addresses:

Remove a Key or Address from the Wallet:

Grep Your Validator:

✅ Validator and Staking

namada client = namadac

Bond Token to Your Validator (adjust the amount):

Check Bonds:

Query the Set of Validators:

Check Your Validator State:

Unjail Your Validator:

Change Validator's Commission Rate (adjust the rate):

Change Consensus Key:

Change Validator Metadata:

Unbond Tokens:

Redelegate Tokens (add $DEST_MONIKER):

Withdraw Tokens:

Delegate Tokens to a Validator (adjust the amount):

Check Delegations:

Withdraw Rewards:

✅ Transactions and Transfers

✅ Account and Proposal

✅ Query Commands

✅ Network and Configuration

Last updated