dataforge-labs commited on
Commit
abba3a4
·
verified ·
1 Parent(s): c2c38c0

Clarify dataset description, methods and limitations

Browse files
Files changed (1) hide show
  1. README.md +23 -37
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  license: odc-by
3
- pretty_name: "Whether L2 sequencers keep the inclusion promises they make"
4
  tags:
5
  - layer-2
6
  - rollup
@@ -15,48 +15,37 @@ size_categories:
15
  - 100K<n<1M
16
  ---
17
 
18
- # L2 sequencer preconfirmation reliability
19
 
20
- A rollup sequencer tells you your transaction is included before anything is settled on L1. This
21
- records whether that promise held.
22
-
23
- The promise is the ephemeral part. If a sequencer replaces an unsafe block, the version it
24
- originally gossiped is discarded and no archive serves it, so a broken promise is only
25
- observable to somebody who wrote down the original.
26
 
27
  ## Contents
28
 
29
- | name | one row is |
30
  |---|---|
31
- | `e14_l2_preconf` | either a heartbeat, recording how far the unsafe head ran ahead of the safe head, or a violation |
 
 
 
 
 
 
32
 
33
- ## Mostly an attested absence
34
 
35
- Violations are rare, and the value here is in the zeros being credible rather than in the
36
- events. That requires the coverage rows: `n_checked` counts promises actually verified against
37
- the canonical chain and `n_failed` counts the checks that could not complete. A run with no
38
- violations and no checks is not the same as a run with no violations and thousands.
39
 
40
- `row_type` separates heartbeats from violations.
 
 
 
 
41
 
42
- ## Before you build on this
43
 
44
- - `lag_blocks` is only meaningful where `safe_tag_plausible` is true. One chain's endpoint has
45
- served a stale safe tag intermittently, giving a lag of tens of millions of blocks against
46
- another chain's few dozen, then recovering to a normal figure hours later. It is kept rather
47
- than dropped, because an endpoint's own inconsistency is a fact about running on public
48
- infrastructure, and because it comes and goes you cannot exclude a chain once and be done.
49
- The flag is false on exactly the affected rows; filter on it, not on the chain name.
50
- - The unsafe head is sampled every few seconds, so a block that was proposed and replaced between
51
- two samples is invisible. This undercounts violations and cannot overcount them.
52
- - Nine chains, ALL OP-stack. That is nine independent sequencer operators, which is enough to
53
- compare them against each other, but it is still one rollup architecture: nothing here
54
- generalises to a rollup built differently.
55
- - Safe-head lag varies enormously between them even at rest, from tens of blocks to several
56
- thousand, and one endpoint reports a lag of tens of millions. Compare a chain against its own
57
- history rather than against another chain's absolute level.
58
 
59
- Partitions are parquet, one file per collection window, under `dataset/YYYY/MM/`. Every dataset here carries a FIXED 7-day sample WINDOW starting at its own first day of collection, together spanning 2026-08-26 to 2026-09-01, so you can check schema, coverage and quality before asking for more. It does not advance, so there is nothing to gain by re-downloading it. The full history is held privately, available on request.
60
 
61
  ```python
62
  from huggingface_hub import snapshot_download
@@ -70,11 +59,8 @@ df = pd.concat(map(pd.read_parquet,
70
 
71
  ## Coverage
72
 
73
- `e0_run_manifest` lists every collection window with its poll counts and failure counts, and is
74
- published in full rather than windowed. Gaps between windows are real, cannot be filled in
75
- afterwards, and nothing here is interpolated.
76
 
77
  ## License and contact
78
 
79
- ODC-BY: use it freely, credit "DataForge (dataforge-labs)". Questions and requests for the full
80
- history via the discussions tab.
 
1
  ---
2
  license: odc-by
3
+ pretty_name: "OP Stack unsafe-head observations and canonical-chain checks"
4
  tags:
5
  - layer-2
6
  - rollup
 
15
  - 100K<n<1M
16
  ---
17
 
18
+ # L2 sequencer preconfirmation observations
19
 
20
+ Periodic observations of unsafe and safe heads on selected OP Stack networks, with subsequent checks of sampled unsafe block hashes against the chain reported by the endpoint. The panel records coverage and detected changes to previously observed blocks.
 
 
 
 
 
21
 
22
  ## Contents
23
 
24
+ | Table | Record |
25
  |---|---|
26
+ | `e14_l2_preconf` | A heartbeat with head and check statistics, or a detected violation |
27
+
28
+ ## Using the data
29
+
30
+ `row_type` separates heartbeats from violations. Use `n_checked` and `n_failed` to assess how many checks completed before interpreting a period with no detected violations.
31
+
32
+ `lag_blocks` measures the reported gap between unsafe and safe heads. Use it only where `safe_tag_plausible` is true. Some endpoints have returned stale or inconsistent safe tags, which can produce implausibly large lags.
33
 
34
+ Compare lag with each chain's own history. Different sequencer and batch-publication policies can produce different normal levels across networks.
35
 
36
+ ## Limitations
 
 
 
37
 
38
+ - The configured coverage includes nine OP Stack chains. Results do not establish behaviour across other rollup architectures.
39
+ - Sampling can miss a block that is proposed and replaced between observations.
40
+ - Observations depend on public endpoint responses. A mismatch warrants investigation and is not, by itself, proof of a sequencer failure or an L1 finality failure.
41
+ - An unsafe head is an early chain view, not a universal transaction-level confirmation guarantee.
42
+ - No detected violations means none were found in completed checks; it does not establish uninterrupted reliability outside those checks.
43
 
44
+ ## Files and access
45
 
46
+ Data is stored as Parquet files under `dataset/YYYY/MM/`, with partitions for collection windows. Each measurement table has a fixed 7-day sample beginning at its configured collection start date. The sample windows in this repository span 2026-08-26 to 2026-09-01. Availability within each window depends on successful collection. The public sample dates remain fixed as additional history accumulates privately. Contact DataForge through the discussions tab to enquire about additional history.
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
48
+ ### Load a table
49
 
50
  ```python
51
  from huggingface_hub import snapshot_download
 
59
 
60
  ## Coverage
61
 
62
+ `e0_run_manifest` records collection windows, poll counts and failures. It is published in full and may cover dates beyond the fixed data sample. Collection gaps are not interpolated. Use the manifest together with table timestamps and error fields to assess coverage.
 
 
63
 
64
  ## License and contact
65
 
66
+ The public sample is published under ODC-BY. Attribute it to "DataForge (dataforge-labs)". For questions about the data or access to additional history, open a discussion in this repository.