Open
Conversation
Add support for capturing aggregate attestations alongside single attestations. Aggregate attestations are broadcast on the `attestation` beacon API events topic and produce the same `BEACON_API_ETH_V1_EVENTS_ATTESTATION_V2` event type, but with populated `aggregation_bits`. Key differences from single attestations: - Uses *spec.VersionedAttestation instead of *electra.SingleAttestation - No subnet filtering (aggregates are broadcast globally) - Aggregation bits are hex-encoded in the output - No AttestingValidator metadata (aggregates represent multiple validators) Both TopicSingleAttestation and TopicAggregateAttestation share the same opt-in condition - if single attestation is enabled, aggregates are also enabled.
- Enable attestation subnet checking in the integration test - Add verification that attestation events (single or aggregate) are being captured - Increase timeout from 60s to 90s to allow for attestation events
Not all consensus clients emit attestation events at the same rate. Some clients may not have validators assigned during the test window. Make attestation verification optional to avoid flaky test failures.
The ethereum-package starlark code now uses 'depends_on' parameter for store_service_files which requires a newer Kurtosis version.
mattevans
approved these changes
Jan 19, 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.
Summary
attestationbeacon API events topicBEACON_API_ETH_V1_EVENTS_ATTESTATION_V2event type but with populatedaggregation_bitsKey Differences from Single Attestations
*electra.SingleAttestation*spec.VersionedAttestationsingle_attestationattestationOnSingleAttestation()OnAttestation()Test plan
go build ./...golangci-lint run --new-from-rev="origin/master"go test -race ./...