chore: swap go-eth2-client to ethpandaops fork v0.1.2#828
Merged
Conversation
Move from github.com/attestantio/go-eth2-client v0.27.1 to github.com/ethpandaops/go-eth2-client v0.1.2. Bumps ethpandaops/beacon and ethpandaops/ethcore to their swap-branch pseudo-versions so the types line up end-to-end. bellatrix/capella ExecutionPayload base fee accessor renamed from BaseFeePerGas to BaseFeePerGasLE in the fork (the field is little-endian 32 bytes). Conversion sites in pkg/proto/eth/block.go and pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go now reverse LE→BE before SetBytes; the previous code passed the LE bytes to big.Int.SetBytes directly, which silently produced wrong values for pre-deneb base fees. Depends on ethpandaops/beacon#72 and ethpandaops/ethcore#127.
mattevans
approved these changes
May 13, 2026
mattevans
added a commit
that referenced
this pull request
May 14, 2026
* master: chore: swap go-eth2-client to ethpandaops fork v0.1.2 (#828) feat(output): add s3blobstore sink for blob sidecar archival
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.
Switches the direct dependency from `github.com/attestantio/go-eth2-client v0.27.1` to `github.com/ethpandaops/go-eth2-client v0.1.2`. Bumps `ethpandaops/beacon` and `ethpandaops/ethcore` to their matching swap-branch pseudo-versions so types align across the call surface.
The fork renamed bellatrix/capella `ExecutionPayload.BaseFeePerGas` ([32]byte) to `BaseFeePerGasLE` to make the byte order explicit. The two affected call sites — `pkg/proto/eth/block.go` and `pkg/cannon/deriver/beacon/eth/v2/execution_transaction.go` — now reverse LE→BE before `big.Int.SetBytes`. The previous code passed the LE bytes to `SetBytes` directly, silently producing wrong base fee values for pre-deneb blocks. Side-effect bug fix.
Depends on ethpandaops/beacon#72 and ethpandaops/ethcore#127 — both must merge (and get tags) before this can move off pseudo-versions.