Skip to content

Commit

Permalink
rename data gas to blob gas - eip 7354
Browse files Browse the repository at this point in the history
  • Loading branch information
acolytec3 committed Jul 28, 2023
1 parent bcc16e4 commit d497e2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/schemas/receipt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ ReceiptInfo:
title: gas used
description: The amount of gas used for this specific transaction alone.
$ref: '#/components/schemas/uint'
dataGasUsed:
title: data gas used
description: The amount of data gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
blobGasUsed:
title: blob gas used
description: The amount of blob gas used for this specific transaction. Only specified for blob transactions as defined by EIP-4844.
$ref: '#/components/schemas/uint'
contractAddress:
title: contract address
Expand Down Expand Up @@ -106,7 +106,7 @@ ReceiptInfo:
title: effective gas price
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).
$ref: '#/components/schemas/uint'
dataGasPrice:
title: data gas price
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.
blobGasPrice:
title: blob gas price
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.
$ref: '#/components/schemas/uint'

0 comments on commit d497e2b

Please sign in to comment.