Useful Commands
Information
# Check the blocks
babylond status 2>&1 | jq ."sync_info"."latest_block_height"
# Check logs
journalctl -u babylond -f -o cat
# Restart
systemctl restart babylond && journalctl -u babylond -f -o cat
# Check status
babylond status 2>&1 | jq .sync_info
# Check balance
babylond q bank balances $BABYLON_ADDRESS
# Check pubkey of validator
babylond tendermint show-validator
# Check validator
babylond q staking validator $BABYLON_VALOPER
babylond q staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker="$BABYLON_VALOPER")' | jq
# Check information of TX_HASH
babylond q tx <TX_HASH>
# Check how many blocks were passed by the validator and from which block the asset
babylond q slashing signing-info $(babylond tendermint show-validator)Work with wallets
Delete Node
Governance
Peers and RPC
Last updated