validator
Guide for Validator CLI
Create wallet
To create new wallet you can use command below. Don’t forget to save the mnemonic
symphonyd keys add $WALLETTo recover your wallet using seed phrase
symphonyd keys add $WALLET --recoverShow your wallet list
symphonyd keys listSave wallet info
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_profileCreate validator
check your wallet balance:
symphonyd query bank balances $SYMPHONY_WALLET_ADDRESSTo create your validator run command below
Check your validator key
Get list of validators
Usefull commands
Service management
Check logs
Start service
Stop service
Restart service
Node info
Synchronization info
Validator info
Node info
Show node id
Wallet operations
List of wallets
Recover wallet
Delete wallet
Get wallet balance
Transfer funds
Voting
Staking, Delegation and Rewards
Delegate stake
Redelegate stake from validator to another validator
Withdraw all rewards
Withdraw rewards with commision
Validator management
Edit validator
Unjail validator
Last updated