Skip to content

Commit

Permalink
Fix transaction type for EIP-4844 transaction.
Browse files Browse the repository at this point in the history
According to https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md
The type should be `Bytes1(0x03)`
  • Loading branch information
pgherveou committed May 31, 2024
1 parent 03911ff commit 590888b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/schemas/transaction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Transaction4844Unsigned:
properties:
type:
title: type
$ref: '#/components/schemas/byte'
type: string
pattern: ^0x3$
nonce:
title: nonce
$ref: '#/components/schemas/uint'
Expand Down

0 comments on commit 590888b

Please sign in to comment.