Last updated
Last updated
fxcored tx staking create-validator \
--amount 1000000nivea \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(fxcored tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "" \
--chain-id fxcore \
--fees=800000000000000000FX \
-y
fxcored tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "" \
--from $WALLET \
--chain-id fxcore \
--fees \
-y
fxcored status 2>&1 | jq .ValidatorInfo
fxcored q staking validator $(fxcored keys show $WALLET --bech val -a)
fxcored q slashing signing-info $(fxcored tendermint show-validator)
fxcored q slashing params
fxcored tx slashing unjail --from $WALLET --chain-id fxcore --fees -y
fxcored 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
[[ $(fxcored q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(fxcored status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"
fxcored q slashing signing-info $(fxcored tendermint show-validator)