You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/engine/prague.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ This specification is based on and extends [Engine API - Cancun](./cancun.md) sp
12
12
-[Engine API -- Prague](#engine-api----prague)
13
13
-[Table of contents](#table-of-contents)
14
14
-[Structures](#structures)
15
-
-[DepositReceiptV1](#depositreceiptv1)
16
-
-[ExitV1](#exitv1)
15
+
-[DepositRequestV1](#depositrequestv1)
16
+
-[WithdrawalRequestV1](#withdrawalrequestv1)
17
17
-[ExecutionPayloadV4](#executionpayloadv4)
18
18
-[Methods](#methods)
19
19
-[engine\_newPayloadV4](#engine_newpayloadv4)
@@ -29,7 +29,7 @@ This specification is based on and extends [Engine API - Cancun](./cancun.md) sp
29
29
30
30
## Structures
31
31
32
-
### DepositReceiptV1
32
+
### DepositRequestV1
33
33
This structure maps onto the deposit object from [EIP-6110](https://eips.ethereum.org/EIPS/eip-6110).
34
34
The fields are encoded as follows:
35
35
@@ -41,9 +41,9 @@ The fields are encoded as follows:
41
41
42
42
*Note:* The `amount` value is represented in Gwei.
43
43
44
-
### ExitV1
44
+
### WithdrawalRequestV1
45
45
46
-
This structure represents an execution layer triggered exit operation.
46
+
This structure represents an execution layer triggered withdrawal request.
47
47
The fields are encoded as follows:
48
48
49
49
-`sourceAddress`: `DATA`, 20 Bytes
@@ -54,7 +54,7 @@ The fields are encoded as follows:
54
54
55
55
### ExecutionPayloadV4
56
56
57
-
This structure has the syntax of [`ExecutionPayloadV3`](./cancun.md#executionpayloadv3) and appends the new fields: `depositReceipts` and `exits`.
57
+
This structure has the syntax of [`ExecutionPayloadV3`](./cancun.md#executionpayloadv3) and appends the new fields: `depositRequests` and `withdrawalRequests`.
58
58
59
59
-`parentHash`: `DATA`, 32 Bytes
60
60
-`feeRecipient`: `DATA`, 20 Bytes
@@ -73,8 +73,8 @@ This structure has the syntax of [`ExecutionPayloadV3`](./cancun.md#executionpay
73
73
-`withdrawals`: `Array of WithdrawalV1` - Array of withdrawals, each object is an `OBJECT` containing the fields of a `WithdrawalV1` structure.
74
74
-`blobGasUsed`: `QUANTITY`, 64 Bits
75
75
-`excessBlobGas`: `QUANTITY`, 64 Bits
76
-
-`depositReceipts`: `Array of DepositReceiptV1` - Array of deposits, each object is an `OBJECT` containing the fields of a `DepositReceiptV1` structure.
77
-
-`exits`: `Array of ExitV1` - Array of exits, each object is an `OBJECT` containing the fields of a `ExitV1` structure.
76
+
-`depositRequests`: `Array of DepositRequestV1` - Array of deposits, each object is an `OBJECT` containing the fields of a `DepositRequestV1` structure.
77
+
-`withdrawalRequests`: `Array of WithdrawalRequestV1` - Array of withdrawal requests, each object is an `OBJECT` containing the fields of a `WithdrawalRequestV1` structure.
0 commit comments