mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* PeerDAS: Add needed proto files and corresponding generated code. * Fix Nishant's comment. * `max_cell_proofs_length.size`: Set to `CELLS_PER_EXT_BLOB * MAX_BLOB_COMMITMENTS_PER_BLOCK`. * `BlobsBundleV2`: Add comment.
22 lines
643 B
Protocol Buffer
22 lines
643 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ethereum.engine.v1;
|
|
|
|
import "proto/eth/ext/options.proto";
|
|
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;
|
|
}
|