Files
nanoreth/README.md
2025-07-06 03:45:59 +00:00

876 B

reth-hl

HyperEVM archive node implementation based on reth's NodeBuilder API. Heavily inspired by reth-bsc.

Installation

Install the reth-hl binary:

$ make install

Usage

Ingest from S3

Set AWS credentials in ~/.aws/credentials. To use a non-default profile:

$ export AWS_PROFILE=default  # optional
$ reth-hl node --s3 --http --ws --ws.port=8545

Ingest from local

S3-style directory (backfill):

$ reth-hl node --ingest-dir=/path/to/evm-blocks ...

Native hl-node format (realtime, low latency):

$ reth-hl node --local-ingest-dir=$HOME/hl/data/evm_blocks_and_receipts ...

Or if the path is $HOME/hl/data/evm_blocks_and_receipts simply:

$ reth-hl node --local

Note: This is a draft and will be merged with nanoreth documentation.