Ethereum execution layer (EL) chain database snapshots

A collection of database snapshots to quickly restore the state of a node

Snapshots available for:

How to use

We recommend using rclone (>1.63.0) utility to download the snapshot. Install it first by following the instructions on the official download page.

Download the snapshot:

export BASE_SNAPSHOT_URL="https://snapshots.flashbots.dev/<snapshot_name>" # Replace <snapshot_name> with the snapshot name from the above
export LATEST_VERSION=$(rclone copyurl $BASE_SNAPSHOT_URL/latest_version.meta.txt -)
export EL_STORAGE_PATH="<el_storage_path>" # Replace with the path where DB will be stored locally
rclone copyurl $BASE_SNAPSHOT_URL/$LATEST_VERSION/files.txt files.txt
rclone copy --progress --transfers 20 --multi-thread-streams 30 --http-url $BASE_SNAPSHOT_URL/$LATEST_VERSION --no-traverse --http-no-head --disable-http2 --inplace --no-gzip-encoding --size-only --retries 6 --retries-sleep 10s --files-from files.txt :http: $EL_STORAGE_PATH
rm files.txt

Provided by ⚡🤖 Flashbots