Useful commands
Information
# Check bloks
lavad status 2>&1 | jq ."SyncInfo"."latest_block_height"
# Check the logs
journalctl -u lavad -f -o cat
# Check status
curl localhost:${PORT_LAVA}657/status
# Check balance
lavad q bank balances $WALLET_LAVA
# Check pubkey of validator
lavad tendermint show-validator
# Check validator
lavad query staking validator $VALOPER_LAVA
lavad query staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker=="<name_moniker>")' | jq
# Check info of TX_HASH
lavad query tx <TX_HASH>
# Check how many blocks were passed by the validator and from which block the asset
lavad q slashing signing-info $(lavad tendermint show-validator)Last updated