Cheat Sheet
This guide covers the Operation of symphony node.
To install symphony node, you need to have several prerequisites in place. Here's a list of all the essential pre-requisites for setting up and working on this project.
Service Operation
1
Check logs
journalctl -u symphony.service -f --no-hostname -o cat
2
Check service status
sudo systemctl status symphonyd
3
Node info
symphonyd status 2>&1 | jq
4
Start service
sudo systemctl start symphony.service
5
Stop services
sudo systemctl stop symphony.service
6
Restart Services
sudo systemctl restart symphony.service
Wallet Management
1
Add New Wallet
symphonyd keys add wallet
2
Restore executing wallet
symphonyd keys add wallet --recover
3
List All Wallets
symphonyd keys list
4
Delete wallet
symphonyd keys delete wallet
5
Check Balance
symphonyd q bank balances $(symphonyd keys show wallet -a)
Token Operation
1
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards --from wallet --chain-id symphony-testnet-4 --fees 800note -y
2
Withdraw rewards and commission from your validator
symphonyd tx distribution withdraw-rewards $VALOPER_ADDRESS --from wallet --commission --chain-id symphony-testnet-4 --fees 800note -y
3
Delegate to Yourself
symphonyd tx staking delegate $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-4 --fees 800note -y
4
Delegate
symphonyd tx staking delegate TO_VALOPER_ADDRESS 1000000note --from wallet --chain-id symphony-testnet-4 --fees 800note -y
5
Redelegate Stake to Another Validator
symphonyd tx staking redelegate $VALOPER_ADDRESS TO_VALOPER_ADDRESS 1000000note --from wallet --chain-id symphony-testnet-4 --fees 800note -y
6
Unbond
symphonyd tx staking unbond $(symphonyd keys show wallet --bech val -a) 1000000note --from wallet --chain-id symphony-testnet-4 --fees 800note -y
7
Transfer Funds
symphonyd tx bank send wallet TO_WALLET_ADDRESS 1000000note --chain-id symphony-testnet-4 --fees 800note -y
Validator Operation
1
Edit Existing Validator
symphonyd tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "" \
--from wallet \
--chain-id symphony-testnet-4 \
--fees 800note \
-y
2
Validator Info
symphonyd q staking validator $(symphonyd keys show wallet --bech val -a)
3
Unjail Validator
symphonyd tx slashing unjail --from wallet --chain-id symphony-testnet-4 --fees 800note -y
Governance
1
View Proposal List
symphonyd query gov proposals
2
View Proposal By No
symphonyd query gov proposal 1
3
Vote Yes
symphonyd tx gov vote 1 yes --from wallet --chain-id symphony-testnet-4 --fees 800note
4
Vote No
symphonyd tx gov vote 1 no --from wallet --chain-id symphony-testnet-4 --fees 800note
5
Vote Abstain
symphonyd tx gov vote 1 abstain --from wallet --chain-id symphony-testnet-4 --fees 800note
6
Vote No With Veto
symphonyd tx gov vote 1 no_with_veto --from wallet --chain-id symphony-testnet-4 --fees 800note