diff --git a/beacon/engine/codec_epe.go b/beacon/engine/codec_epe.go index e383ba57b5..df4fd7f53b 100644 --- a/beacon/engine/codec_epe.go +++ b/beacon/engine/codec_epe.go @@ -64,18 +64,23 @@ func (e ExecutionPayloadEnvelope) MarshalJSON() ([]byte, error) { b.Object(func() { b.Key("executionPayload") b.RawValue(payload) + b.Key("blockValue") b.HexBigInt(e.BlockValue) + b.Key("blobsBundle") marshalBlobsBundle(&b, e.BlobsBundle) + b.Key("executionRequests") if e.Requests == nil { b.Null() } else { appendHexBytesArray(&b, e.Requests) } + b.Key("shouldOverrideBuilder") b.Bool(e.Override) + if e.Witness != nil { b.Key("witness") b.RawValue(witness)