Skip to content

Commit fe8e13c

Browse files
authored
Rename "data gas" to "blob gas" (#451)
1 parent cb1e993 commit fe8e13c

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/engine/cancun.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This specificaiton is based on and extends [Engine API - Shanghai](./shanghai.md
3434

3535
### ExecutionPayloadV3
3636

37-
This structure has the syntax of [`ExecutionPayloadV2`](./shanghai.md#executionpayloadv2) and appends the new fields: `dataGasUsed` and `excessDataGas`.
37+
This structure has the syntax of [`ExecutionPayloadV2`](./shanghai.md#executionpayloadv2) and appends the new fields: `blobGasUsed` and `excessBlobGas`.
3838

3939
- `parentHash`: `DATA`, 32 Bytes
4040
- `feeRecipient`: `DATA`, 20 Bytes
@@ -51,8 +51,8 @@ This structure has the syntax of [`ExecutionPayloadV2`](./shanghai.md#executionp
5151
- `blockHash`: `DATA`, 32 Bytes
5252
- `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)
5353
- `withdrawals`: `Array of WithdrawalV1` - Array of withdrawals, each object is an `OBJECT` containing the fields of a `WithdrawalV1` structure.
54-
- `dataGasUsed`: `QUANTITY`, 64 Bits
55-
- `excessDataGas`: `QUANTITY`, 64 Bits
54+
- `blobGasUsed`: `QUANTITY`, 64 Bits
55+
- `excessBlobGas`: `QUANTITY`, 64 Bits
5656

5757
### BlobsBundleV1
5858

src/engine/experimental/eip6110.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ This structure has the syntax of [`ExecutionPayloadV3`](../cancun.md#executionpa
5555
- `blockHash`: `DATA`, 32 Bytes
5656
- `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)
5757
- `withdrawals`: `Array of WithdrawalV1` - Array of withdrawals, each object is an `OBJECT` containing the fields of a `WithdrawalV1` structure.
58-
- `dataGasUsed`: `QUANTITY`, 64 bits
59-
- `excessDataGas`: `QUANTITY`, 64 Bits
58+
- `blobGasUsed`: `QUANTITY`, 64 Bits
59+
- `excessBlobGas`: `QUANTITY`, 64 Bits
6060
- `depositReceipts`: `Array of DepositReceiptV1` - Array of deposits, each object is an `OBJECT` containing the fields of a `DepositReceiptV1` structure.
6161

6262
## Methods

src/engine/openrpc/schemas/payload.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ ExecutionPayloadV3:
204204
- blockHash
205205
- transactions
206206
- withdrawals
207-
- dataGasUsed
208-
- excessDataGas
207+
- blobGasUsed
208+
- excessBlobGas
209209
properties:
210210
parentHash:
211211
$ref: '#/components/schemas/ExecutionPayloadV2/properties/parentHash'
@@ -237,11 +237,11 @@ ExecutionPayloadV3:
237237
$ref: '#/components/schemas/ExecutionPayloadV2/properties/transactions'
238238
withdrawals:
239239
$ref: '#/components/schemas/ExecutionPayloadV2/properties/withdrawals'
240-
dataGasUsed:
241-
title: Data gas used
240+
blobGasUsed:
241+
title: Blob gas used
242242
$ref: '#/components/schemas/uint64'
243-
excessDataGas:
244-
title: Excess data gas
243+
excessBlobGas:
244+
title: Excess blob gas
245245
$ref: '#/components/schemas/uint64'
246246
ExecutionPayloadBodyV1:
247247
title: Execution payload body object V1

0 commit comments

Comments
 (0)