Skip to content

Commit 5c357e0

Browse files
committed
engine: rename request to execution request
1 parent cd7d992 commit 5c357e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/engine/prague.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This specification is based on and extends [Engine API - Cancun](./cancun.md) sp
1010
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
1111

1212
- [Structures](#structures)
13-
- [RequestV1](#requestv1)
13+
- [ExecutionRequestV1](#requestv1)
1414
- [ExecutionPayloadV4](#executionpayloadv4)
1515
- [ExecutionPayloadBodyV2](#executionpayloadbodyv2)
1616
- [Methods](#methods)
@@ -36,7 +36,7 @@ This specification is based on and extends [Engine API - Cancun](./cancun.md) sp
3636

3737
## Structures
3838

39-
### RequestV1
39+
### ExecutionRequestV1
4040

4141
This structure maps onto the amalgamation of the deposit object from [EIP-6110](https://eips.ethereum.org/EIPS/eip-6110), withdrawal request from [EIP-7002](https://eips.ethereum.org/EIPS/eip-7002), and the consolidation request from [EIP-7251](https://eips.ethereum.org/EIPS/eip-7251).
4242

@@ -76,15 +76,15 @@ This structure has the syntax of [`ExecutionPayloadV3`](./cancun.md#executionpay
7676
- `withdrawals`: `Array of WithdrawalV1` - Array of withdrawals, each object is an `OBJECT` containing the fields of a `WithdrawalV1` structure.
7777
- `blobGasUsed`: `QUANTITY`, 64 Bits
7878
- `excessBlobGas`: `QUANTITY`, 64 Bits
79-
- `requests`: `Array of RequestV1` - Array of request objects
79+
- `requests`: `Array of ExecutionRequestV1` - Array of request objects
8080

8181
### ExecutionPayloadBodyV2
8282

8383
This structure has the syntax of [`ExecutionPayloadBodyV1`](./shanghai.md#executionpayloadv1) and appends the new field `requests`.
8484

8585
- `transactions`: `Array of DATA` - Array of transaction objects, each object is a byte list (`DATA`) representing `TransactionType || TransactionPayload` or `LegacyTransaction` as defined in [EIP-2718](https://eips.ethereum.org/EIPS/eip-2718)
8686
- `withdrawals`: `Array of WithdrawalV1` - Array of withdrawals, each object is an `OBJECT` containing the fields of a `WithdrawalV1` structure.
87-
- `requests`: `Array of RequestV1` - Array of requests, each object is an `OBJECT` containing the fields of a `RequestV1` structure.
87+
- `requests`: `Array of ExecutionRequestV1` - Array of requests, each object is an `OBJECT` containing the fields of a `ExecutionRequestV1` structure.
8888

8989
## Methods
9090

0 commit comments

Comments
 (0)