Skip to content

Commit d497e2b

Browse files
committed
rename data gas to blob gas - eip 7354
1 parent bcc16e4 commit d497e2b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/schemas/receipt.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ ReceiptInfo:
7575
title: gas used
7676
description: The amount of gas used for this specific transaction alone.
7777
$ref: '#/components/schemas/uint'
78-
dataGasUsed:
79-
title: data gas used
80-
description: The amount of data gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
78+
blobGasUsed:
79+
title: blob gas used
80+
description: The amount of blob gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
8181
$ref: '#/components/schemas/uint'
8282
contractAddress:
8383
title: contract address
@@ -106,7 +106,7 @@ ReceiptInfo:
106106
title: effective gas price
107107
description: The actual value per gas deducted from the sender's account. Before EIP-1559, this is equal to the transaction's gas price. After, it is equal to baseFeePerGas + min(maxFeePerGas - baseFeePerGas, maxPriorityFeePerGas).
108108
$ref: '#/components/schemas/uint'
109-
dataGasPrice:
110-
title: data gas price
111-
description: The actual value per gas deducted from the sender's account for data gas. Only specified for blob transactions as defined by EIP-4844.
109+
blobGasPrice:
110+
title: blob gas price
111+
description: The actual value per gas deducted from the sender's account for blob gas. Only specified for blob transactions as defined by EIP-4844.
112112
$ref: '#/components/schemas/uint'

0 commit comments

Comments
 (0)