Node & Service maintenance
0gchaind status | jq0gchaind status | jq '{ latest_block_height: .sync_info.latest_block_height, catching_up: .sync_info.catching_up }'echo $(0gchaind tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.0gchain/config/config.toml \
| sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')curl -sS http://localhost:$RPC_PORT/net_info \
| jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' \
| awk -F ':' '{print $1":"$(NF)}'sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.0025ua0gi\"/" $HOME/.0gchain/config/app.tomlsed -i -e "s/prometheus = false/prometheus = true/" $HOME/.0gchain/config/config.toml0gchaind tendermint unsafe-reset-all --keep-addr-book --home $HOME/.0gchain --keep-addr-bookLast updated