Validator Operations
Create New Validator
zetacored tx staking create-validator \
--amount 1000000azeta \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(zetacored tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "" \
--chain-id athens_7001-1 \
--fees 3000000000000000azeta \
-yEdit Existing Validator
zetacored tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "" \
--from $WALLET \
--chain-id athens_7001-1 \
--fees \
-yValidator info
zetacored status 2>&1 | jq .ValidatorInfoValidator Details
zetacored q staking validator $(zetacored keys show $WALLET --bech val -a)Jailing info
zetacored q slashing signing-info $(zetacored tendermint show-validator)Slashing parameters
zetacored q slashing paramsUnjail validator
zetacored tx slashing unjail --from $WALLET --chain-id athens_7001-1 --fees -yActive Validators List
zetacored q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nlCheck Validator key
[[ $(zetacored q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(zetacored status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"Signing info
zetacored q slashing signing-info $(zetacored tendermint show-validator)Last updated