Wallet Management

Add New Wallet

exrpd keys add $WALLET

Restore existing wallet

exrpd keys add $WALLET --recover

List All Wallets

exrpd keys list

Delete wallet

exrpd keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

exrpd keys export $WALLET

View EVM Prived Key

exrpd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

exrpd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

exrpd tx distribution withdraw-all-rewards --from $WALLET --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Withdraw rewards and commission from your validator

exrpd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Check your balance

exrpd query bank balances $WALLET_ADDRESS

Delegate to Yourself

exrpd tx staking delegate $(exrpd keys show $WALLET --bech val -a) 1000000apoa --from $WALLET --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Delegate

exrpd tx staking delegate <TO_VALOPER_ADDRESS> 1000000apoa --from $WALLET --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Redelegate Stake to Another Validator

exrpd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000apoa --from $WALLET --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Unbond

exrpd tx staking unbond $(exrpd keys show $WALLET --bech val -a) 1000000apoa --from $WALLET --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Transfer Funds

exrpd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000apoa --chain-id exrp_1440002-1 --gas="300000" --gas-prices="240000000000900000axrp" -y

Last updated