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