Merged
Conversation
storage/src/main/java/tech/pegasys/teku/storage/client/BlobReconstructor.java
Outdated
Show resolved
Hide resolved
storage/src/main/java/tech/pegasys/teku/storage/client/CombinedChainDataClient.java
Outdated
Show resolved
Hide resolved
...ptance-tests/src/testFixtures/java/tech/pegasys/teku/test/acceptance/dsl/TekuBeaconNode.java
Show resolved
Hide resolved
zilm13
reviewed
Feb 23, 2026
storage/src/test/java/tech/pegasys/teku/storage/client/BlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/BlobReconstructorGloasTest.java
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/BlobReconstructorGloasTest.java
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/BlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
...ge/src/test/java/tech/pegasys/teku/storage/client/BlobSidecarReconstructionProviderTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/CryptoBlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/ExtensionBlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/NetworkBlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
2 tasks
.../java/tech/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImpl.java
Show resolved
Hide resolved
2 tasks
.../java/tech/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImpl.java
Outdated
Show resolved
Hide resolved
.../java/tech/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImpl.java
Show resolved
Hide resolved
...src/main/java/tech/pegasys/teku/beaconrestapi/handlers/v1/events/DataColumnSidecarEvent.java
Show resolved
Hide resolved
.../java/tech/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImpl.java
Outdated
Show resolved
Hide resolved
...h/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImplGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/main/java/tech/pegasys/teku/storage/client/NetworkBlobReconstructor.java
Outdated
Show resolved
Hide resolved
storage/src/main/java/tech/pegasys/teku/storage/client/BlobReconstructor.java
Show resolved
Hide resolved
zilm13
approved these changes
Feb 24, 2026
...h/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImplGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/CryptoBlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
storage/src/test/java/tech/pegasys/teku/storage/client/ExtensionBlobReconstructorGloasTest.java
Outdated
Show resolved
Hide resolved
.../java/tech/pegasys/teku/statetransition/datacolumns/util/DataColumnSidecarELManagerImpl.java
Outdated
Show resolved
Hide resolved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Description
Update the
BlobReconstructorand its implementations to handle GloasFixed Issue(s)
#10311
Documentation
doc-change-requiredlabel to this PR if updates are required.Changelog
Note
Medium Risk
Touches core data-availability recovery, gossip equivocation tracking, and blob reconstruction paths; fork-conditional optional fields and new task-start gating could change when recovery triggers or how many sidecars/blobs are built.
Overview
Adds Gloas support to data-column-sidecar handling by making
kzg_commitments, signed headers, and inclusion proofs optional at theDataColumnSidecarinterface level and pushing fork-specific behavior intoDataColumnSidecarUtil(new APIs to extract commitments, build sidecars, fetch inclusion proofs, and reconstruct all sidecars).Refactors EL-side recovery (
DataColumnSidecarELManagerImpl) and equivocation tracking to be fork-agnostic: recovery can be triggered by either sidecars or blocks, uses a per-task commitmentsSafeFutureandAtomicBooleanguard, and constructs/publishes recovered sidecars viaspec.getDataColumnSidecarUtil(slot)(including newSpec.getNumberOfCustodyGroups(slot)access).Updates blob reconstruction to work for forks without commitments on sidecars by deriving blob count from proof/column sizes, adding empty-input guards, and using
DataColumnSidecarUtil.reconstructAllDataColumnSidecars; adds new Gloas-focused tests and adjusts existing Fulu tests/logging to usegetMaybeKzgCommitments()and simplifiedDataColumnSidecarlog output.Written by Cursor Bugbot for commit e0749dd. This will update automatically on new commits. Configure here.