https://github.com/longcipher/parallel-evm-explorer
Parallel EVM explorer
https://github.com/longcipher/parallel-evm-explorer
Last synced: 12 months ago
JSON representation
Parallel EVM explorer
- Host: GitHub
- URL: https://github.com/longcipher/parallel-evm-explorer
- Owner: longcipher
- License: apache-2.0
- Created: 2024-12-06T03:43:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-19T07:47:50.000Z (over 1 year ago)
- Last Synced: 2025-03-19T08:33:20.347Z (over 1 year ago)
- Language: Rust
- Size: 220 KB
- Stars: 16
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Parallel EVM Explorer
Parallel EVM explorer is a tool to analyze the parallel execution of EVM transactions in a specific block. It aims to support all EVM compatible chains.
## API Document
*
## DB Migration
```sh
sqlx db setup
```
## Run Server
```sh
parallel-evm-explorer -c config.toml
```
example config.toml
```toml
execution_api = "rpc-with-debug-namespace"
start_block = 2954719 # analyzer run from this block
server_addr = "0.0.0.0:8327" # api server listen address
database_url = "postgresql://localhost:5432/pevm_explorer" # database url
chain_id = 17000 # holesky
```