Skip to content

Commit e923266

Browse files
committed
schemas/tx: add 4844 blob fields to generic transaction
1 parent dd1989f commit e923266

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/schemas/transaction.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,26 @@ GenericTransaction:
396396
title: max fee per gas
397397
description: The maximum total fee per gas the sender is willing to pay (includes the network / base fee and miner / priority fee) in wei
398398
$ref: '#/components/schemas/uint'
399+
maxFeePerBlobGas:
400+
title: max fee per blob gas
401+
description: The maximum total fee per gas the sender is willing to pay for blob gas in wei
402+
$ref: '#components/schemas/uint'
399403
accessList:
400404
title: accessList
401405
description: EIP-2930 access list
402406
$ref: '#/components/schemas/AccessList'
407+
blobVersionedHashes:
408+
title: blobVersionedHashes
409+
description: List of versioned blob hashes associated with the transaction's EIP-4844 data blobs.
410+
type: array
411+
items:
412+
$ref: '#/components/schemas/hash32'
413+
blobs:
414+
title: blobs
415+
description: Raw blob data.
416+
type: array
417+
items:
418+
$ref: '#/components/schemas/bytes'
403419
chainId:
404420
title: chainId
405421
description: Chain ID that this transaction is valid on.

0 commit comments

Comments
 (0)