create-validator

Check status

# check sync status, once your node is fully synced, the output from "catching_up" will print "false"
selfchaind status 2>&1 | jq

Create validator

selfchaind tx staking create-validator \
--amount=1000000uslf \
--pubkey=$(selfchaind tendermint show-validator) \
--moniker="$MONIKER" \
--chain-id=$SELFCHAIN_CHAIN_ID \
--commission-rate="0.10" \
--commission-max-rate="0.20" \
--commission-max-change-rate="0.01" \
--identity "" \
--details="" \
--min-self-delegation="1" \
--from=$WALLET \
--gas-adjustment 1.2 --gas auto --gas-prices=0.5uslf \
-y