Wallet Management

Add New Wallet

realio-networkd keys add $WALLET

Restore existing wallet

realio-networkd keys add $WALLET --recover

List All Wallets

realio-networkd keys list

Delete wallet

realio-networkd keys delete $WALLET

Check Balance

realio-networkd q bank balances $(realio-networkd keys show $WALLET -a)

Export Key (save to wallet.backup)

realio-networkd keys export $WALLET

View EVM Prived Key

realio-networkd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

realio-networkd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

realio-networkd tx distribution withdraw-all-rewards --from $WALLET --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Withdraw rewards and commission from your validator

realio-networkd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Check your balance

realio-networkd query bank balances $WALLET_ADDRESS

Delegate to Yourself

realio-networkd tx staking delegate $(realio-networkd keys show $WALLET --bech val -a) 1000000ario --from $WALLET --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Delegate

realio-networkd tx staking delegate <TO_VALOPER_ADDRESS> 1000000ario --from $WALLET --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Redelegate Stake to Another Validator

realio-networkd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ario --from $WALLET --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Unbond

realio-networkd tx staking unbond $(realio-networkd keys show $WALLET --bech val -a) 1000000ario --from $WALLET --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Transfer Funds

realio-networkd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ario --chain-id realionetwork_3301-1 --gas auto --gas-adjustment 1.3 --fees 300000000ario -y

Last updated