Wallet Management

Add New Wallet

hippod keys add $WALLET

Restore existing wallet

hippod keys add $WALLET --recover

List All Wallets

hippod keys list

Delete wallet

hippod keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

hippod keys export $WALLET

View EVM Prived Key

hippod keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

hippod keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

hippod tx distribution withdraw-all-rewards --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Withdraw rewards and commission from your validator

hippod tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Check your balance

hippod query bank balances $WALLET_ADDRESS

Delegate to Yourself

hippod tx staking delegate $(hippod keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Delegate

hippod tx staking delegate <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Redelegate Stake to Another Validator

hippod tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Unbond

hippod tx staking unbond $(hippod keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Transfer Funds

hippod tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000nivea --chain-id hippo-protocol-1 --fees 50000000000000000 -y

Last updated