Skip to content

WIP: Op erigon #247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions execution/execution.proto
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@ 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;
optional uint64 gas_limit = 9;
optional bytes holocene_Eip1559_params = 10;
}

message AssembleBlockResponse {
Expand All @@ -143,6 +149,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 {
Expand Down