From 86f87bbedc93255ec3e0976a952728f7083afb42 Mon Sep 17 00:00:00 2001 From: Giulio Date: Fri, 24 Jan 2025 15:34:22 +0100 Subject: [PATCH 1/4] save --- execution/execution.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/execution/execution.proto b/execution/execution.proto index 39309fd..97429b3 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -127,6 +127,10 @@ message AssembleBlockRequest { types.H160 suggested_fee_recipient = 4; repeated types.Withdrawal withdrawals = 5; // added in Shapella (EIP-4895) optional types.H256 parent_beacon_block_root = 6; // added in Dencun (EIP-4788) + + // Optimism shit + repeated bytes transactions = 7; + bool no_tx_pool = 8; } message AssembleBlockResponse { From 0b7a33c0099ae67efc3e5568aabb07234f6edd62 Mon Sep 17 00:00:00 2001 From: Giulio Date: Fri, 24 Jan 2025 20:23:31 +0100 Subject: [PATCH 2/4] save --- execution/execution.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/execution/execution.proto b/execution/execution.proto index 97429b3..9710578 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -131,6 +131,7 @@ message AssembleBlockRequest { // Optimism shit repeated bytes transactions = 7; bool no_tx_pool = 8; + optional uint64 gas_limit = 9; } message AssembleBlockResponse { From 56db8c4500b59b5fc7066c9248bd974f8ac6bfd1 Mon Sep 17 00:00:00 2001 From: Giulio Date: Sun, 26 Jan 2025 19:00:42 +0100 Subject: [PATCH 3/4] save --- execution/execution.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/execution/execution.proto b/execution/execution.proto index 9710578..9e6d39c 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -148,6 +148,9 @@ message AssembledBlockData { types.H256 block_value = 2; types.BlobsBundleV1 blobs_bundle = 3; types.RequestsBundle requests = 4; + + // Optimism + optional types.H256 parent_beacon_block_root = 5; } message GetAssembledBlockResponse { From b09874bf8aa5bfa4419ee5e63c4dbf52b94a8ad8 Mon Sep 17 00:00:00 2001 From: Giulio Date: Thu, 6 Feb 2025 14:58:14 +0100 Subject: [PATCH 4/4] save --- execution/execution.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/execution/execution.proto b/execution/execution.proto index 9e6d39c..0c04b01 100644 --- a/execution/execution.proto +++ b/execution/execution.proto @@ -132,6 +132,7 @@ message AssembleBlockRequest { repeated bytes transactions = 7; bool no_tx_pool = 8; optional uint64 gas_limit = 9; + optional bytes holocene_Eip1559_params = 10; } message AssembleBlockResponse {