Cheat Sheet
If you use our auto-installation, we've included several scripts under ./scripts folder like:
./list_keys.sh
./check_balance.sh
./create_validator.sh
./unjail_validator.sh
./check_validator.sh
./start_wardend.sh
./check_log.shHere's other useful commands you might need
⚙️Service operations
sudo journalctl -fu symphonydsudo systemctl daemon-reloadsudo systemctl enable symphonydsudo systemctl disable symphonydsudo systemctl start symphonydsudo systemctl stop symphonydsudo systemctl status symphonydsudo systemctl status symphonyd🖥️Node operations
symphonyd status | jqsymphonyd status 2>&1 | jq .NodeInfosymphonyd status 2>&1 | jq .SyncInfo🗝️Key Management
symphonyd keys add $WALLETsymphonyd keys add $WALLET --recoversymphonyd keys listsymphonyd q bank balances $(symphonyd keys show $WALLET -a)💱Transaction operations
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards \
--from $WALLET \
--chain-id symphony-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 800note -yWithdraw rewards and commission from your validator
symphonyd tx distribution withdraw-rewards $(symphonyd keys show $WALLET --bech val -a) \
--from $WALLET \
--commission \
--chain-id symphony-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 800note -ySelf delegate
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note \
--from $WALLET \
--chain-id symphony-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 800note -yRedelegate
symphonyd tx staking redelegate <FROM_VALOPER_ADDRESS> <TO_VALOPER_ADDRESS> 1000000note \
--from $WALLET \
--chain-id symphony-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 800note -yUnbond
symphonyd tx staking unbond $(symphonyd keys show $WALLET --bech val -a) 1000000note \
--from $WALLET \
--chain-id symphony-testnet-2 \
--gas auto --gas-adjustment 1.5 \
--fees 800note -yTransfer token
symphonyd tx bank send $WALLET <TO_WALLET_ADDRESS> 1000000note \
--gas auto \
--gas-adjustment 1.5 \
--fees 800note -y✅Validator operations
Create validator
Check Validator Setup
Unjail Validator
symphonyd tx slashing unjail \
--from $WALLET \
--chain-id symphony-testnet-2 \
--fees=800note -y🏛️Governance
Query Proposal List
symphonyd query gov proposalsVote
symphonyd tx gov vote 1 yes \
--from $WALLET \
--chain-id symphony-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees=800note -yvote value can be yes, no, no_with_veto and abstain
Last updated
Was this helpful?