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 uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yWithdraw rewards and commission from your validator
junod tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yCheck your balance
junod query bank balances $WALLET_ADDRESSDelegate to Yourself
junod tx staking delegate $(junod keys show $WALLET --bech val -a) 1000000ujunox --from $WALLET --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yDelegate
junod tx staking delegate <TO_VALOPER_ADDRESS> 1000000ujunox --from $WALLET --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yRedelegate Stake to Another Validator
junod tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ujunox --from $WALLET --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yUnbond
junod tx staking unbond $(junod keys show $WALLET --bech val -a) 1000000ujunox --from $WALLET --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yTransfer Funds
junod tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ujunox --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -yLast updated