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