Wallet Management

Add New Wallet

junod keys add $WALLET

Restore existing wallet

junod keys add $WALLET --recover

List All Wallets

junod keys list

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 uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -y

Withdraw 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 -y

Check your balance

junod query bank balances $WALLET_ADDRESS

Delegate 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 -y

Delegate

junod tx staking delegate <TO_VALOPER_ADDRESS> 1000000ujunox --from $WALLET --chain-id uni-7 --gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -y

Redelegate 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 -y

Unbond

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 -y

Transfer 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 -y

Last updated