Crates.io | e2store |
lib.rs | e2store |
version | |
source | src |
created_at | 2025-03-20 02:57:39.642554+00 |
updated_at | 2025-03-31 17:14:48.022648+00 |
description | E2store, era, and era1 implementations for Ethereum |
homepage | |
repository | https://github.com/ethereum/trin |
max_upload_size | |
id | 1598831 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
E2store is a format originally developed by Nimbus as a framework for building other storage formats. More information can be found here https://github.com/status-im/nimbus-eth2/blob/stable/docs/e2store.md
era is a format for storing beacon chain data more information can be found here https://github.com/status-im/nimbus-eth2/blob/stable/docs/e2store.md#era-files
era1 is a format for storing all of Ethereum's pre merge blocks. It contains block headers, block bodies, and receipts for pre-merge block history which ranges block 0-15537394
e2ss is an abbreviation for e2-state-snapshot
e2ss is a format made to store full flat state snapshots, one of our first uses of this will be using to bootstrap Portal State Network bridges. Unlike .era
/.era1
e2ss files will only store 1 block's worth of state per file. The reason for this choice is a snapshot of the state is quite large.
TODO: Add chart of snapshot size at every million block interval.
e2hs is an abbreviation for e2-history-store
e2hs is a format for storing all of Ethereum's Execution Layer blocks. It contains block headers with proofs, block bodies, and receipts for block history which ranges block 0 to latest minus 8192
Analysis tool that reads e2ss file and prints basic stats about it can be run with:
cargo run -p e2store --bin e2ss-stats --features e2ss-stats-binary -- <path>
e2store/memory.rs
and e2store/stream.rs
e2store/memory.rs
provides an api to load a full e2store file such as .era
/.era1
and manipulate it in memory. For smaller e2store files this approach works well. The issue comes when dealing with e2store files of much greater size loading the whole file into memory at once often isn't possible. This is where e2store/stream.rs
comes in where you can stream the data you need from a e2store file as you need it. This is required for .e2ss
format for storing full flat state snapshots.