mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 04:54:05 -05:00
21 lines
605 B
Protocol Buffer
21 lines
605 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.engine.v1;
|
|
|
|
import "proto/engine/v1/execution_engine.proto";
|
|
|
|
option csharp_namespace = "Ethereum.Engine.V1";
|
|
option go_package = "github.com/prysmaticlabs/prysm/v5/proto/engine/v1;enginev1";
|
|
option java_multiple_files = true;
|
|
option java_outer_classname = "ElectraProto";
|
|
option java_package = "org.ethereum.engine.v1";
|
|
option php_namespace = "Ethereum\\Engine\\v1";
|
|
|
|
message ExecutionBundleFulu {
|
|
ExecutionPayloadDeneb payload = 1;
|
|
bytes value = 2;
|
|
BlobsBundleV2 blobs_bundle = 3;
|
|
bool should_override_builder = 4;
|
|
repeated bytes execution_requests = 5;
|
|
}
|