CLI-cheatsheet
CLI Cheatsheet
to check logs of your node
sudo journalctl -u hippod -f -o catto start your node service
sudo systemctl start hippodStop service
sudo systemctl stop hippodRestart node
sudo systemctl restart hippodto check sync status
hippod status 2>&1 | jq .SyncInfoNode info
hippod status 2>&1 | jq .NodeInfoshow node ID
hippod tendermint show-node-iddelete wallet
hippod keys delete $WALLETto check wallet balance
hippod q bank balances $(hippod keys show $WALLET -a)transfer funds to another wallet
hippod tx bank send wallet <TO_WALLET_ADDRESS> 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autoView evm priv key
hippod keys unsafe-export-eth-key $WALLETWithdraw all rewards
hippod tx distribution withdraw-all-rewards --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autowithdraw rewards and comission from your validator
hippod tx distribution withdraw-rewards $(hippod keys show wallet --bech val -a) --commission --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autocheck your balance
hippod query bank balances $WALLET_ADDRESSdelegate to your self
hippod tx staking delegate $(hippod keys show wallet --bech val -a) 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autoredelegate stake to another validator
hippod staking redelegate $(hippod keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.ahp --gas-adjustment=1.5 --gas=autounbound stake
hippod tx staking unbond $(hippod keys show wallet --bech val -a) 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autotransfer funds
hippod tx bank send $WALLET <TO_WALLET_ADDRESS> 1000000ahp --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autovalidator details
hippod q staking validator $(hippod keys show $WALLET --bech val -a)jailing info
hippod q slashing signing-info $(hippod tendermint show-validator)unjail validator
hippod tx slashing unjail --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=autoactive set validator
hippod q staking validators -oj | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nlDelete Node
sudo systemctl stop hippod && sudo systemctl disable hippod && sudo rm /etc/systemd/system/hippod.service && sudo systemctl daemon-reload && rm -f $(which hippod) && rm -rf .hippoLast updated