πŸ”¨Validator Operations

check sync status and node info:

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

check balance:

namadac balance --owner $ALIAS

check keys:

namadaw list

find your validator address:

namadac find-validator --tm-address=$(curl -s localhost:26657/status | jq -r .result.validator_info.address) --node localhost:26657

stake funds:

namadac bond --source $WALLET --validator $VALIDATOR_ADDRESS --amount 10 --memo $MEMO

self-bonding:

namadac bond --validator $VALIDATOR_ADDRESS --amount 10 --memo $MEMO

check your validator bond status:

namadac bonds --validator $VALIDATOR_ADDRESS

check your user bonds:

namadac bonds --owner $WALLET

check all bonded nodes:

namadac bonded-stake

find all the slashes:

non-self unbonding (validator alias can be used instead of address):

self-unbonding:

withdrawing unbonded tokens (available 6 epochs after unbonding):

find your validator status:

check epoch:

unjail, you need to wait 2 epochs:

deactivate validator:

reactivate validator:

Change consensus key:

Generate priv_validator_key:

change validator commission rate:

change validator metadata:

Last updated