3 Commits

Author SHA1 Message Date
e9dcff4015 readme nits 2025-08-26 19:04:18 -07:00
21e7c718ea Update README.md
Co-authored-by: sprites0 <lovelysprites@gmail.com>
2025-08-26 19:02:19 -07:00
8c6ea1ae7a Update README.md
Co-authored-by: sprites0 <lovelysprites@gmail.com>
2025-08-26 19:01:41 -07:00

View File

@ -18,14 +18,13 @@ Building NanoReth from source requires Rust and Cargo to be installed:
The current state of the block files comprise of millions of small objects totalling over 20 Gigs and counting. The "requester pays" option means you will need a configured aws environment, and you could incur charges which varies according to destination (ec2 versus local). The current state of the block files comprise of millions of small objects totalling over 20 Gigs and counting. The "requester pays" option means you will need a configured aws environment, and you could incur charges which varies according to destination (ec2 versus local).
1) this will backfill the existing blocks from HyperLiquid's EVM S3 bucket: 1) this will backfill the existing blocks from Hyperliquid's EVM S3 bucket:
```shell ```shell
aws s3 sync s3://hl-mainnet-evm-blocks/ ~/evm-blocks \ aws s3 sync s3://hl-mainnet-evm-blocks/ ~/evm-blocks \
--request-payer requester \ --request-payer requester \
--exact-timestamps \ --exact-timestamps \
--size-only \ --size-only \
--page-size 1000 \
--only-show-errors --only-show-errors
``` ```
> consider using this [rust based s3 tool wrapper](https://github.com/wwwehr/hl-evm-block-sync) alternative to optimize your download experience > consider using this [rust based s3 tool wrapper](https://github.com/wwwehr/hl-evm-block-sync) alternative to optimize your download experience
@ -86,7 +85,7 @@ Testnet is supported since block 21304281.
# Get testnet genesis at block 21304281 # Get testnet genesis at block 21304281
$ cd ~ $ cd ~
$ git clone https://github.com/sprites0/hl-testnet-genesis $ git clone https://github.com/sprites0/hl-testnet-genesis
$ git lfs pull $ git -C hl-testnet-genesis lfs pull
$ zstd --rm -d ~/hl-testnet-genesis/*.zst $ zstd --rm -d ~/hl-testnet-genesis/*.zst
# Now return to where you have cloned this project to continue # Now return to where you have cloned this project to continue