Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eth: add tx,receipt EIP4844 fields #458

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/schemas/receipt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,11 @@ ReceiptInfo:
title: effective gas price
description: The actual value per gas deducted from the senders 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'
blobGasUsed:
title: blob transaction gas used
description: The amount of gas used for this blob transaction.
$ref: '#/components/schemas/uint'
blobGasPrice:
title: blob transaction gas price
description: The actual value per blob gas deducted from the senders account.
$ref: '#/components/schemas/uint'
10 changes: 10 additions & 0 deletions src/schemas/transaction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,16 @@ GenericTransaction:
title: max fee per gas
description: The maximum total fee per gas the sender is willing to pay (includes the network / base fee and miner / priority fee) in wei
$ref: '#/components/schemas/uint'
maxFeePerBlobGas:
title: max fee per blob gas
description: The maximum blob gas fee cap per blob the sender is willing to pay for blob transactions in wei
$ref: '#/components/schemas/uint'
blobVersionedHashes:
title: blob versioned hashes
description: The hases of the blob commitments for blob transactions, nil otherwise
type: array
items:
$ref: '#/components/schemas/hash32'
accessList:
title: accessList
description: EIP-2930 access list
Expand Down
Loading