This blockexplorer is a client-only (i.e. serverless) block explorer, where the client makes RPC calls directly to the blockchain node.
- Search bar to directly query an address / transaction / block.
- Changeable RPC URL with chain ID verification.
- Custom known addresses for better UX.
- Light & dark theme support.
Here are some example RPC urls and chain IDs
## Hardhat Local
http://localhost:8545
31337
## Avalanche
https://api.avax.network/ext/bc/C/rpc
43114
## Polygon
https://polygon-rpc.com
137Clone the repo, and just yarn. Then, yarn dev to run the web app locally. Enter the RPC url and the chain ID to the settings button on the top right.
The connected node must support the following:
eth_blockNumbereth_calleth_getBalanceeth_getCodeeth_getBlockByHasheth_getBlockByNumbereth_getTransactionByHasheth_getTransactionByBlockHashAndIndexeth_getTransactionByBlockNumberAndIndexeth_getTransactionReceipteth_getUncleByBlockHashAndIndexeth_getLogs
Inspired from blockscout.