Validator

To create validator

junctiond tx staking create-validator \
--amount 1000000amf \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(junctiond tendermint show-validator) \
--moniker "validator" \
--identity "" \
--website "" \
--details "" \
--chain-id junction \
--gas=auto \
--gas-adjustment=1.4 \
-y

Edit Existing Validator

junctiond tx staking edit-validator \
--commission-rate 0.11 \
--new-moniker "$MONIKER" \
--identity "" \
--details "" \
--from $WALLET \
--chain-id junction \
--gas=auto \
--gas-adjustment=1.4 \
-y 

Validator info

junctiond status 2>&1 | jq

Validator Details

junctiond q staking validator $(celestia-appd keys show $WALLET --bech val -a) 

Jailing info

junctiond q slashing signing-info $(celestia-appd tendermint show-validator) 

Slashing parameters

junctiond q slashing params 

Unjail validator

junctiond tx slashing unjail --from $WALLET --chain-id celestia --gas 300000 --fees 2000utia -y 

Active Validators List

junctiond 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

[[ $(junctiond q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(junctiond status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"

Signing info

junctiond q slashing signing-info $(celestia-appd tendermint show-validator) 

Staking

junctiond tx staking delegate <validator_address> <amount>amf --from=<wallet> --chain-id=junction --fees=100amf

Last updated