Skip to content

Commit 0805683

Browse files
committed
Fix missing required fields in AccessListEntry
According to https://eips.ethereum.org/EIPS/eip-2930 > For the transaction to be valid, accessList must be of type [[{20 bytes}, [{32 bytes}...]]...]
1 parent 590888b commit 0805683

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/schemas/transaction.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ AccessListEntry:
6464
title: Access list entry
6565
type: object
6666
additionalProperties: false
67+
required:
68+
- address
69+
- storageKeys
6770
properties:
6871
address:
6972
$ref: '#/components/schemas/address'

0 commit comments

Comments
 (0)