Cheatsheet
Service Operation
Check Logs
sudo journalctl -u symphonyd -fStart Sevice
sudo systemctl start symphonydStop service
sudo systemctl stop symphonydRestart Service
sudo systemctl restart symphonydCheck Service
sudo systemctl status symphonydReload Service
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable symphonydDisable Service
sudo systemctl disable symphonydNode Peer
echo $(symphonyd tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.symphonyd/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')Wallet Operation
Add New Wallet
symphonyd keys add $WALLETAdd Existing Wallet
symphonyd keys add $WALLET --recoverList Wallet
symphonyd keys listDelete Wallet
symphonyd keys delete $WALLETCheck Balance
symphonyd q bank balances $WALLET_ADDRESS View EVM Private Key
emped keys unsafe-export-eth-key $WALLETConvert address
Token
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yWithdraw comission
symphonyd tx distribution withdraw-rewards $(symphonyd keys show $WALLET --bech val -a) --commission --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yDelegate to your own validator
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yDelegate to other validator
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yUnbound token from your own validator
symphonyd tx staking unbond $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-2 --gas=auto -ySending token to other wallet
symphonyd tx bank send wallet <TO_WALLET_ADDRESS> 1000000note --from $WALLET ---chain-id symphony-testnet-2 --gas=auto -yValidator Operations
Edit existing validator
symphonyd tx staking edit-validator \
--new-moniker="" \
--identity="" \
--details="" \
--website="" \
--chain-id=symphony-testnet-2 \
--from=wallet \
--gas=auto \
-y Validator Info
symphonyd status 2>&1 | jqUnjail Validator
symphonyd tx slashing unjail --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yJailed Reason
symphonyd query slashing signing-info $(symphonyd tendermint show-validator)Governance
Vote You can change the value of yes to no,abstain,no withveto
yes to no,abstain,no withvetosymphonyd tx gov vote 1 yes --from $WALLET --chain-id symphony-testnet-2 --gas=auto -yProposal List
symphonyd query gov proposals Delete Node
this command for delete node make sure u had back up your priv_validator_key.json
sudo systemctl stop symphonyd
sudo systemctl disable symphonyd
sudo rm /etc/systemd/system/symphonyd.service
sudo systemctl daemon-reload
rm -f $(which symphonyd)
rm -rf .symphonyd
rm -rf symphony
sed -i "/SYMPHONY_/d" $HOME/.bash_profileLast updated