An open API service indexing awesome lists of open source software.

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

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
```