Network
Cosmos
Symphony
Chetasheet

Service operations

#Check Logs
sudo journalctl -f -u symphonyd
 
#Start service
sudo systemnctl start symphonyd
 
#Restart Service
sudo systemnctl restart symphonyd
 
withdraw all reward
symphonyd tx distribution withdraw-all-rewards --from $WALLET --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note 
Withdraw rewards and commission from your validator
symphonyd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note -y 
Check wallet balance
symphonyd query bank balances $WALLET
Delegate to the validator itself
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note  --from $WALLET --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note -y 
Redelegate to other validators
symphonyd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000note  --from $WALLET --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note -y 
Unbond
symphonyd tx staking unbond $(symphonyd keys show $WALLET --bech val -a) 1000000note  --from $WALLET --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note -y 
Transfer Funds
symphonyd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000note  --gas auto --gas-adjustment 1.5 --fees 100note -y 

KEY MANAGEMENT

Create Wallet
symphonyd keys add $WALLET
Recover Existing Wallet
symphonyd keys add $WALLET --recover
Check All Available Wallet
symphonyd keys list
Check wallet funds
symphonyd q bank balances $WALLET_ADDRESS 

VALIDATOR INFORMATION

create a validator
symphonyd tx staking create-validator \
--amount 1000000note  \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation "1000000" \
--security-contact "" \
--pubkey $(symphonyd tendermint show-validator) \
--moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--chain-id symphony-testnet-3 \
--gas auto \
--gas-adjustment 1.5 \
--fees 100note
edit existing validator
symphonyd tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--from $WALLET \
--chain-id symphony-testnet-3 \
--gas auto \
--gas-adjustment 1.5 \
--fees 100note \
-y 
validator status/info
symphonyd status 2>&1 | jq
Unjail validator
symphonyd tx slashing unjail --from $WALLET --chain-id symphony-testnet-3 --gas auto --gas-adjustment 1.5 --fees 100note -y