Nodevism.com
  • Nodevism
    • Booting Up Nodevism
  • Mainnet
    • CrossFi
      • Installation
    • Hippo Protocol
      • Endpoint
      • Installation
      • Creating-validator
      • CLI-cheatsheet
    • Medasdigital
  • Testnet
    • Aztec
    • Cortensor
    • Covalent
      • EWM Client
    • Empeiria
      • Endpoints
      • Requirement
      • Installation
      • Snapshot
      • Creating Validator
      • CLI Cheatsheet
    • Lumera Protocol
      • Public endpoint
      • Installation
      • Snapshot
      • Create Validator
      • Upgrade
      • CLI Cheatsheet
    • Odiseo
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
    • Symphony (Orchestra Labs)
      • Endpoint
      • Requirement
      • Installation
      • Create Validator
      • Cheatsheet
    • Union
      • Union ceremony task
    • XRVL-EVM
      • Public Endpoint
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
      • Cli Cheatsheet
  • Archive
    • Artela
      • Requirement
        • Public Endpoint
        • Installation
        • Create Validator
        • Upgrade
        • Snapshot
      • Testnet User Guide
    • CrossFi Chain
      • Endpoints
      • Installation
      • Upgrade
      • Validator Setup
      • Cheatsheet
      • How to create RPC,API, and Json-RPC
      • CrossFi user incentivized testnet guide
    • Dill.xyz
      • Dill light node
    • InitiaFDN
      • Endpoint
      • Run Initia Node
        • Installation
        • Creating validator
        • Setup Oracle
        • Cheatsheet
        • Upgrade
      • User Testnet Guide
    • Network3 AI
      • Installation
    • Nubit
      • Nubit Light Node
    • 0G_Labs
      • Page 2
    • Story protocol
    • Warden
      • Endpoint
      • Run Warden Node
      • Installation
      • Creating Validator
      • Cheatsheet
    • Zenrock
      • Public endpoint
      • Automatic installation
      • Manual installation
      • Creating validator
      • Usefull command
  • Other
    • Secure server settup (optional)
    • Make Terminal Colorful
Powered by GitBook
On this page
Edit on GitHub
  1. Mainnet
  2. Hippo Protocol

CLI-cheatsheet

CLI Cheatsheet

to check logs of your node

sudo journalctl -u hippod -f -o cat

to start your node service

sudo systemctl start hippod

Stop service

sudo systemctl stop hippod

Restart node

sudo systemctl restart hippod

to check sync status

hippod status 2>&1 | jq .SyncInfo

Node info

hippod status 2>&1 | jq .NodeInfo

show node ID

hippod tendermint show-node-id

delete wallet

hippod keys delete $WALLET

to 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=auto

View evm priv key

hippod keys unsafe-export-eth-key $WALLET

Withdraw all rewards

hippod tx distribution withdraw-all-rewards --from $WALLET --chain-id hippo-protocol-1 --gas-prices=0.25ahp --gas-adjustment=1.5 --gas=auto

withdraw 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=auto

check your balance

hippod query bank balances $WALLET_ADDRESS

delegate 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=auto

redelegate 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=auto

unbound 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=auto

transfer 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=auto

validator 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=auto

active 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 | nl

Delete 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 .hippo
PreviousCreating-validatorNextMedasdigital

Last updated 2 days ago