Validator Setup
✅Create a Validator
evmosd tx staking create-validator \
--amount 1000000aevmos \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(evmosd tendermint show-validator) \
--moniker "test" \
--identity "" \
--website "" \
--details "I love blockchain ❤️" \
--chain-id zgtendermint_9000-1 \
--gas 500000 --gas-prices 99999aevmos \
-y
💻Edit Existing Validator
evmosd tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--from $WALLET \
--chain-id zgtendermint_9000-1 \
--gas 500000 --gas-prices 99999aevmos \
-y
Validator info
evmosd status 2>&1 | jq
Validator Details
evmosd q staking validator $(evmosd keys show $WALLET --bech val -a)
Jailing info
evmosd q slashing signing-info $(evmosd tendermint show-validator)
Slashing parameters
evmosd q slashing params
Unjail validator
evmosd tx slashing unjail --from $WALLET --chain-id zgtendermint_9000-1 --gas 500000 --gas-prices 99999aevmos -y
Active Validators List
evmosd 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 | nl
Check Validator key
[[ $(evmosd q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(evmosd status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"
Signing info
evmosd q slashing signing-info $(evmosd tendermint show-validator)
Last updated