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"
symphonyd status 2>&1 | jq
Create Validator
symphonyd tx staking create-validator \
--amount=1000000note \
--pubkey=$(symphonyd tendermint show-validator) \
--moniker="$MONIKER" \
--chain-id=$EMPE_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_NAME \
--gas=auto \
--gas-adjustment=1.4 \
--gas-prices 0.25note \
-y
Check your validator
symphonyd q staking validator $(symphonyd keys show $WALLET_NAME --bech val -a)
Last updated