Useful Commands

Information

# Check the blocks
nibid status 2>&1 | jq ."SyncInfo"."latest_block_height"
# Restart
systemctl restart nibid && journalctl -u nibid -f -o cat
# Check logs
journalctl -u nibid -f -o cat
# Check status
nibid status 2>&1 | jq .SyncInfo
# Check balance
nibid q bank balances $(nibid keys show wallet -a)
# Check balance pricefeeder
nibid q bank balances $(nibid keys show feeder_wallet -a)
# Check pubkey of validator
nibid tendermint show-validator
# Check validator
nibid q staking validator $NIBIRU_VALOPER
nibid q staking validators --limit 1000000 -o json | jq '.validators[] | select(.description.moniker="$NIBIRU_VALOPER")' | jq
# Check information of TX_HASH
nibid q tx <TX_HASH>

Transactions

! 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 wallets

Delete Node

Governance

Peers and RPC

Last updated

Was this helpful?