Create Validator
Before creating validator make sure your wallet has added and have fund..!
Create Wallet
symphonyd keys add wallet
For add exsisting wallet u can use bellow command
symphonyd keys add wallet --recover
Save Wallet Information
add wallet and validator address into variables
SYMPHONY_WALLET_ADDRESS=$(symphonyd keys show $WALLET -a)
SYMPHONY_VALOPER_ADDRESS=$(symphonyd keys show $WALLET --bech val -a)
echo 'export SYMPHONY_WALLET_ADDRESS='${SYMPHONY_WALLET_ADDRESS} >> $HOME/.bash_profile
echo 'export SYMPHONY_VALOPER_ADDRESS='${SYMPHONY_VALOPER_ADDRESS} >> $HOME/.bash_profile
source $HOME/.bash_profile
Create Validator
symphonyd tx staking create-validator \
--amount 100000note \
--from $WALLET \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.2" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey $(symphonyd tendermint show-validator) \
--moniker $MONIKER \
--details "" \
--identity "" \
--website "" \
--security-contact "" \
--chain-id symphony-testnet-2 \
--gas-adjustment 1.4 \
--gas auto \
--fees 800note
-y
And boom Your validato
Last updated