Create validator
NOTE
Before you create validator,
Please ensure you have a balances in your wallet
Please check your node was already synced
# check sync status, once your node is fully synced, the output from "catching_up" will print "false"
galacticad status 2>&1 | jq
Create Validator
galacticad tx staking create-validator \
--amount 1000000agnet \
--from wallet \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(galacticad tendermint show-validator) \
--moniker "<your-name>" \
--identity "<your-keybase>" \
--website "<your-website>" \
--security-contact "<your-email>" \
--details "<your-details>" \
--chain-id galactica_9302-1 \
--gas 210000 --gas-prices 10agnet \
-y