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)! If the transactions are not sent with the error account sequence mismatch, expected 18, got 17: incorrect account sequence, then add the flag -s 18 to the command (replace the number with the one that is waiting for the sequence)
Work with wallet
Delete the node
Governance
Peers and RPC
Last updated
Was this helpful?