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>
# Check how many blocks were passed by the validator and from which block the asset
nibid q slashing signing-info $(nibid tendermint show-validator)

Transactions

# Collect rewards from all validators delegated to them (without commission)
nibid tx distribution withdraw-all-rewards --from wallet --fees 12500unibi --gas=500000 -y
# Collect rewards from a separate validator or rewards + commission from your own validator
nibid tx distribution withdraw-rewards $NIBIRU_VALOPER --from wallet --fees 12500unibi --gas=500000 --commission -y
# Delegate yourself (this is how 1 coin is sent)
nibid tx staking delegate $NIBIRU_VALOPER 1000000unibi --from wallet --fees 12500unibi --gas=500000 -y
# Redelegate to other validator
nibid tx staking redelegate $NIBIRU_VALOPER <dst-validator-addr> 1000000unibi --from wallet --fees 7500unibi --gas=300000 -y
# unbond 
nibid tx staking unbond $NIBIRU_VALOPER 1000000unibi --from wallet --fees 7500unibi --gas=300000 -y
# Send tokens to other adress
nibid tx bank send wallet <address> 1000000unibi --fees 7500unibi --gas=300000 -y
# Escape from jail
nibid tx slashing unjail --from wallet --fees 7500unibi --gas=300000

! 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

# Chech the wallets list
nibid keys list
# Delete wallet
nibid keys delete <name_wallet>

Delete Node

sudo systemctl stop nibid && \
sudo systemctl disable nibid && \
rm /etc/systemd/system/nibid.service && \
sudo systemctl daemon-reload && \
cd $HOME && \
rm -rf nibid && \
rm -rf .nibid && \
rm -rf $(which nibid)

Governance

# List proposals
nibid q gov proposals
# Check voting result
nibid query gov vote 576 $NIBIRU_ADDRESS
# Vote 
nibid tx gov vote 576 yes --from wallet --chain-id nibiru-itn-1 --fees 5000unibi -y

Peers and RPC

FOLDER=.nibid

# Check your peer
PORTR=$(grep -A 3 "\[p2p\]" ~/$FOLDER/config/config.toml | egrep -o ":[0-9]+") && \
echo $(nibid tendermint show-node-id)@$(curl ifconfig.me)$PORTR

# Check port of RPC
echo -e "\033[0;32m$(grep -A 3 "\[rpc\]" ~/$FOLDER/config/config.toml | egrep -o ":[0-9]+")\033[0m"

# Check peers quantity
PORT=
curl -s http://localhost:$NIBIRU_PORT/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr | split(":")[2])"' | wc -l

Last updated

Was this helpful?