Wallet Management

Add New Wallet

routerd keys add $WALLET

Restore existing wallet

routerd keys add $WALLET --recover

List All Wallets

routerd keys list

Delete wallet

routerd keys delete $WALLET

Check Balance

routerd q bank balances $(routerd keys show $WALLET -a)

Export Key (save to wallet.backup)

routerd keys export $WALLET

View EVM Prived Key

routerd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

routerd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

routerd tx distribution withdraw-all-rewards --from $WALLET --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Withdraw rewards and commission from your validator

routerd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Check your balance

routerd query bank balances $WALLET_ADDRESS

Delegate to Yourself

routerd tx staking delegate $(routerd keys show $WALLET --bech val -a) 1000000route --from $WALLET --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Delegate

routerd tx staking delegate <TO_VALOPER_ADDRESS> 1000000route --from $WALLET --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Redelegate Stake to Another Validator

routerd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000route --from $WALLET --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Unbond

routerd tx staking unbond $(routerd keys show $WALLET --bech val -a) 1000000route --from $WALLET --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Transfer Funds

routerd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000route --chain-id router_9600-1 --fees 100000000000000route --gas-prices=7route-y

Last updated