Skip to content

Commit 2daafd7

Browse files
authored
Add requests to execution Header & BlockBody (EIP-7685) (#218) (#235)
1 parent b57f057 commit 2daafd7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

execution/execution.proto

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ message Header {
5656
optional uint64 blob_gas_used = 19; // added in Dencun (EIP-4844)
5757
optional uint64 excess_blob_gas = 20; // added in Dencun (EIP-4844)
5858
optional types.H256 parent_beacon_block_root = 21; // added in Dencun (EIP-4788)
59+
optional types.H256 requests_root = 22; // added in Pectra (EIP-7685)
5960
// AuRa
60-
optional uint64 aura_step = 22;
61-
optional bytes aura_seal = 23;
61+
optional uint64 aura_step = 23;
62+
optional bytes aura_seal = 24;
6263
}
6364

6465
// Body is a block body for execution
@@ -68,7 +69,8 @@ message BlockBody {
6869
// Raw transactions in byte format.
6970
repeated bytes transactions = 3;
7071
repeated Header uncles = 4;
71-
repeated types.Withdrawal withdrawals = 5;
72+
repeated types.Withdrawal withdrawals = 5; // added in Shapella (EIP-4895)
73+
repeated bytes requests = 6; // added in Pectra (EIP-7685)
7274
}
7375

7476
message Block {

0 commit comments

Comments
 (0)