Add New Wallet
symphonyd keys add $WALLET
Restore existing wallet
symphonyd keys add $WALLET --recover
List All Wallets
Delete wallet
symphonyd keys delete $WALLET
Check Balance
symphonyd q bank balances $(symphonyd keys show $WALLET -a)
Export Key (save to wallet.backup)
symphonyd keys export $WALLET
View EVM Prived Key
symphonyd keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
symphonyd keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards --from $WALLET --chain-id symphony-testnet-3 --fees 800note -y
Withdraw rewards and commission from your validator
symphonyd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id symphony-testnet-3 --fees 800note -y
Check your balance
symphonyd query bank balances $WALLET_ADDRESS
Delegate to Yourself
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-3 --fees 800note -y
Delegate
symphonyd tx staking delegate <TO_VALOPER_ADDRESS> 1000000note --from $WALLET --chain-id symphony-testnet-3 --fees 800note -y
Redelegate Stake to Another Validator
symphonyd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000note --from $WALLET --chain-id symphony-testnet-3 --fees 800note -y
Unbond
symphonyd tx staking unbond $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-3 --fees 800note -y
Transfer Funds
symphonyd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000note --chain-id symphony-testnet-3 --fees 800note -y
Last updated