Wallet Management
Add New Wallet
symphonyd keys add $WALLETRestore existing wallet
symphonyd keys add $WALLET --recoverList All Wallets
symphonyd keys listDelete wallet
symphonyd keys delete $WALLETCheck Balance
symphonyd q bank balances $(symphonyd keys show $WALLET -a)Export Key (save to wallet.backup)
symphonyd keys export $WALLETView EVM Prived Key
symphonyd keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
symphonyd keys import $WALLET wallet.backupTokens
Withdraw all rewards
symphonyd tx distribution withdraw-all-rewards --from $WALLET --chain-id symphony-testnet-4 --fees 800note -yWithdraw rewards and commission from your validator
symphonyd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id symphony-testnet-4 --fees 800note -yCheck your balance
symphonyd query bank balances $WALLET_ADDRESSDelegate to Yourself
symphonyd tx staking delegate $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-4 --fees 800note -yDelegate
symphonyd tx staking delegate <TO_VALOPER_ADDRESS> 1000000note --from $WALLET --chain-id symphony-testnet-4 --fees 800note -yRedelegate Stake to Another Validator
symphonyd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000note --from $WALLET --chain-id symphony-testnet-4 --fees 800note -yUnbond
symphonyd tx staking unbond $(symphonyd keys show $WALLET --bech val -a) 1000000note --from $WALLET --chain-id symphony-testnet-4 --fees 800note -yTransfer Funds
symphonyd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000note --chain-id symphony-testnet-4 --fees 800note -yLast updated