-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathstate.yaml
58 lines (58 loc) · 1.21 KB
/
state.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
AccountProof:
title: Account proof
type: object
required:
- address
- accountProof
- balance
- codeHash
- nonce
- storageHash
- storageProof
additionalProperties: false
properties:
address:
title: address
$ref: '#/components/schemas/address'
accountProof:
title: accountProof
type: array
items:
$ref: '#/components/schemas/bytes'
balance:
title: balance
$ref: '#/components/schemas/uint256'
codeHash:
title: codeHash
$ref: '#/components/schemas/hash32'
nonce:
title: nonce
$ref: '#/components/schemas/uint64'
storageHash:
title: storageHash
$ref: '#/components/schemas/hash32'
storageProof:
title: Storage proofs
type: array
items:
$ref: '#/components/schemas/StorageProof'
StorageProof:
title: Storage proof
type: object
required:
- key
- value
- proof
additionalProperties: false
properties:
key:
title: key
$ref: '#/components/schemas/bytesMax32'
value:
title: value
$ref: '#/components/schemas/uint256'
proof:
title: proof
type: array
items:
$ref: '#/components/schemas/bytes'