Skip to content

Commit

Permalink
schemas/tx: add 4844 blob fields to generic transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
lightclient committed Sep 7, 2023
1 parent a4ec599 commit eca7487
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/schemas/transaction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,26 @@ 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 total fee per gas the sender is willing to pay for blob gas in wei
$ref: '#components/schemas/uint'
accessList:
title: accessList
description: EIP-2930 access list
$ref: '#/components/schemas/AccessList'
blobVersionedHashes:
title: blobVersionedHashes
description: List of versioned blob hashes associated with the transaction's EIP-4844 data blobs.
type: array
items:
$ref: '#/components/schemas/hash32'
blobs:
title: blobs
description: Raw blob data.
type: array
items:
$ref: '#/components/schemas/bytes'
chainId:
title: chainId
description: Chain ID that this transaction is valid on.
Expand Down

0 comments on commit eca7487

Please sign in to comment.