fix(checkpoints): discover checkpoints from latest OL epoch#38
Merged
Conversation
purusang
approved these changes
Jun 2, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Discover checkpoints from the latest OL epoch
Problem
The explorer gated checkpoint discovery on
strata_getChainStatus().confirmed.epoch, fetching onlystart..=confirmed. A checkpoint sealed on the OL but not yet L1-confirmed (latest > confirmed) was never fetched, so it stayed invisible in the explorer untilconfirmedcaught up — the observed checkpoint lag (fullnode_latest=2while checkpoint 3 was already sealed). Ref: STR-3652Fix
latest.epochinstead ofconfirmed.epoch; keepconfirmation_statusfromgetCheckpointInfoas the source of truth for display status.latest,confirmed, andfinalizedfromgetChainStatususingstrata_identifiers::EpochCommitment, pinned to the samestrata-commontag used by../alpen.confirmediflatestis absent.fullnode_latest,fullnode_confirmed, andfullnode_finalized.Testing
mock_fullnodenow returns full epoch commitments for all three slots (latest = n−1reported as Pending), exercising the pending-checkpoint discovery path.Note / follow-up
Deserialization is now strict: each epoch slot requires
epoch+last_slot+last_blkid. Confirm the livestrata_getChainStatusreturns fullEpochCommitmentobjects before relying on this in production.