Skip to content

Commit 590888b

Browse files
committed
Fix transaction type for EIP-4844 transaction.
According to https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md The type should be `Bytes1(0x03)`
1 parent 03911ff commit 590888b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/schemas/transaction.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ Transaction4844Unsigned:
1717
properties:
1818
type:
1919
title: type
20-
$ref: '#/components/schemas/byte'
20+
type: string
21+
pattern: ^0x3$
2122
nonce:
2223
title: nonce
2324
$ref: '#/components/schemas/uint'

0 commit comments

Comments
 (0)