Wallet Management
Add New Wallet
hippod keys add $WALLETRestore existing wallet
hippod keys add $WALLET --recoverList All Wallets
hippod keys listDelete wallet
hippod keys delete $WALLETCheck Balance
hippod q bank balances $(hippod keys show $WALLET -a)Export Key (save to wallet.backup)
hippod keys export $WALLETView EVM Prived Key
hippod keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
hippod keys import $WALLET wallet.backupTokens
Withdraw all rewards
hippod tx distribution withdraw-all-rewards --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -yWithdraw rewards and commission from your validator
hippod tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id hippo-protocol-1 --fees 50000000000000000 -yCheck your balance
hippod query bank balances $WALLET_ADDRESSDelegate to Yourself
hippod tx staking delegate $(hippod keys show $WALLET --bech val -a) 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -yDelegate
hippod tx staking delegate <TO_VALOPER_ADDRESS> 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -yRedelegate Stake to Another Validator
hippod tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -yUnbond
hippod tx staking unbond $(hippod keys show $WALLET --bech val -a) 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --fees 50000000000000000 -yTransfer Funds
hippod tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ahp --chain-id hippo-protocol-1 --fees 50000000000000000 -yLast updated