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 $WALLET
Add Existing Wallet
symphonyd keys add $WALLET --recover
List Wallet
symphonyd keys list
Delete Wallet
symphonyd keys delete $WALLET
Check Balance
symphonyd q bank balances $WALLET_ADDRESS
View EVM Private Key
emped keys unsafe-export-eth-key $WALLET
Convert address
Token
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards --from $WALLET --chain-id symphony-testnet-2 --gas=auto -y
Withdraw comission
symphonyd tx distribution withdraw-rewards $(symphonyd keys show $WALLET --bech val -a) --commission --from $WALLET --chain-id symphony-testnet-2 --gas=auto -y
Delegate 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 -y
Delegate to other validator
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-2 --gas=auto -y
Unbound 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 -y