Chainstate is a CLI utility to examine the health of EVM-compatible nodes via JSON-RPC API
cargo install -g chainstate
``` USAGE: chainstate [FLAGS] [OPTIONS]
FLAGS: --endpoints Return working endpoint (tag may be applied to restrict the list) -h, --help Prints help information -s, --server Whether to start HTTP API server -V, --version Prints version information
OPTIONS:
-a, --addr
$ chainstate --network http://localhost:4444/
Dec 20 10:10:16.685 INFO chain 31, block 2451166
To manage multiple nodes, please create plain text file to contain the list of JSON+RPC nodes
(path can be preserved in NETWORKS_FILE
environment variable). Each lines means separate JSON+RPC node.
Optional rows starting with #
can contain the list of comma-separated tags which can be helpful in filtering the list
Example of such file: ```
https://arbitrum.xdaichain.com/
https://public-node.rsk.co
https://mainnet.sovryn.app/rpc
https://public-node.testnet.rsk.co
https://api.avax.network/ext/bc/C/rpc ```
Special tags can be included
- nosync
- means eth_syncing
to check status of the sync
Check state of all networks:
chainstate -n networks.txt
Check state of all networks filtered by tag:
chainstate -n networks.txt -t rsk
Check state of all networks not including tag testnet
:
chainstate -n networks.txt -t rsk,-testnet
To get working JSON+RPC endpoint URLs in plain text format (one URL - one line),
the same principle as getting multiple nodes state is applied,
with --endpoints
flag in addition.
chainstate -n networks.txt -t rsk,-testnet --endpoints
MIT