Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/OffchainLabs/go-bitfield v0.0.0-20251031151322-f427d04d8506
github.com/ethereum/go-ethereum v1.17.4
github.com/ethpandaops/go-eth-engine-client v0.0.2-0.20260703151703-9761c6187b28
github.com/ethpandaops/go-eth2-client v0.1.6
github.com/ethpandaops/go-eth2-client v0.1.7-0.20260731014719-0dcfc98f58c3
github.com/ethpandaops/service-authenticatoor v0.0.2
github.com/glebarez/go-sqlite v1.22.0
github.com/goccy/go-yaml v1.19.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ github.com/ethereum/go-ethereum v1.17.4 h1:uA4q+qiLp7QImBsjdRbINu8iX6OEVmj4DPc5/
github.com/ethereum/go-ethereum v1.17.4/go.mod h1:qMdgwqqRAen+aT8P7KKQKi0Qt6RzG4cfejVAbCpJgqA=
github.com/ethpandaops/go-eth-engine-client v0.0.2-0.20260703151703-9761c6187b28 h1:zPciPcZHSMqL3pJRooPVIVTVAo51PjDX6rYZ6gNJGlU=
github.com/ethpandaops/go-eth-engine-client v0.0.2-0.20260703151703-9761c6187b28/go.mod h1:ggCXJgxLFNGpC+DkgNQkeTr3dXRQDb0+9niNmaJWAgM=
github.com/ethpandaops/go-eth2-client v0.1.6 h1:lG7Xz767YQQ+mN1ldzqJlj9Klg6zOElcemjXbCgJV5o=
github.com/ethpandaops/go-eth2-client v0.1.6/go.mod h1:97Oq3omOQSGPPYgrbsOIIw2Pc4T5Ph21f8ZRyHJQBHU=
github.com/ethpandaops/go-eth2-client v0.1.7-0.20260731014719-0dcfc98f58c3 h1:her3ynubelIdp45o6nvg+RMoMu4iEx+2xvUjcm94yTg=
github.com/ethpandaops/go-eth2-client v0.1.7-0.20260731014719-0dcfc98f58c3/go.mod h1:97Oq3omOQSGPPYgrbsOIIw2Pc4T5Ph21f8ZRyHJQBHU=
github.com/ethpandaops/service-authenticatoor v0.0.2 h1:0rqHA2Rw64+NG0HVGRfqVhJEkRZRzH3qhX2SkBr2u+w=
github.com/ethpandaops/service-authenticatoor v0.0.2/go.mod h1:nIInMlq5O7YQDLVCL5gf0TeVAvVd9Q50k3sm3abTeG0=
github.com/ferranbt/fastssz v0.1.4 h1:OCDB+dYDEQDvAgtAGnTSidK1Pe2tW3nFV40XyMkTeDY=
Expand Down
8 changes: 4 additions & 4 deletions pkg/rpc/beacon/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ func (c *Client) SubmitExecutionPayloadBid(ctx context.Context, bid *eth2all.Sig
}

// SubmitExecutionPayloadEnvelope submits a signed execution payload envelope using the
// stateless flow (SignedExecutionPayloadEnvelopeContents body, Eth-Execution-Payload-Blinded
// false). The stateful/blinded flow only works when the beacon node cached the full envelope
// from its own block production (produceBlockV4); buildoor builds payloads externally, so the
// beacon node never has them cached and the stateless form is the only valid one.
// stateless flow (SignedExecutionPayloadEnvelopeContents body, Eth-Blob-Data-Included true).
// The stateful flow only works when the beacon node cached the blob data from its own block
// production (produceBlockV4); buildoor builds payloads externally, so the beacon node never
// has them cached and the stateless form is the only valid one.
//
// The consensus version header and body encoding (SSZ or JSON per the client's content
// negotiation) are derived from the envelope's Version by go-eth2-client.
Expand Down