mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 02:49:55 +00:00
876 B
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.