-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathstarknet_api_openrpc.json
1961 lines (1961 loc) · 76.7 KB
/
starknet_api_openrpc.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openrpc": "1.0.0-rc1",
"info": {
"version": "0.45.0",
"title": "StarkNet Node API",
"license": {}
},
"servers": [],
"methods": [
{
"name": "starknet_getBlockWithTxHashes",
"summary": "Get block information with transaction hashes given the block id",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The resulting block information with transaction hashes",
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/BLOCK_WITH_TX_HASHES"
},
{
"$ref": "#/components/schemas/PENDING_BLOCK_WITH_TX_HASHES"
}
]
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getBlockWithTxs",
"summary": "Get block information with full transactions given the block id",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The resulting block information with full transactions",
"schema": {
"oneOf": [
{
"$ref": "#/components/schemas/BLOCK_WITH_TXS"
},
{
"$ref": "#/components/schemas/PENDING_BLOCK_WITH_TXS"
}
]
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getStateUpdate",
"summary": "Get the information about the result of executing the requested block",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The information about the state update of the requested block",
"schema": {
"$ref": "#/components/schemas/STATE_UPDATE"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getStorageAt",
"summary": "Get the value of the storage at the given address and key",
"params": [
{
"name": "contract_address",
"description": "The address of the contract to read from",
"summary": "The address of the contract to read from",
"required": true,
"schema": {
"$ref": "#/components/schemas/ADDRESS"
}
},
{
"name": "key",
"description": "The key to the storage value for the given contract",
"summary": "The key to the storage value for the given contract",
"required": true,
"schema": {
"$ref": "#/components/schemas/STORAGE_KEY"
}
},
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The value at the given key for the given contract. 0 if no value is found",
"summary": "The value at the given key for the given contract.",
"schema": {
"$ref": "#/components/schemas/FELT"
}
},
"errors": [
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getTransactionByHash",
"summary": "Get the details and status of a submitted transaction",
"paramStructure": "by-name",
"params": [
{
"name": "transaction_hash",
"summary": "The hash of the requested transaction",
"required": true,
"schema": {
"$ref": "#/components/schemas/TXN_HASH"
}
}
],
"result": {
"name": "result",
"schema": {
"$ref": "#/components/schemas/TXN"
}
},
"errors": [
{
"$ref": "#/components/errors/TXN_HASH_NOT_FOUND"
}
]
},
{
"name": "starknet_getTransactionByBlockIdAndIndex",
"summary": "Get the details of a transaction by a given block id and index",
"description": "Get the details of the transaction given by the identified block and index in that block. If no transaction is found, null is returned.",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "index",
"summary": "The index in the block to search for the transaction",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
}
}
],
"result": {
"name": "transactionResult",
"schema": {
"$ref": "#/components/schemas/TXN"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/INVALID_TXN_INDEX"
}
]
},
{
"name": "starknet_getTransactionReceipt",
"summary": "Get the transaction receipt by the transaction hash",
"paramStructure": "by-name",
"params": [
{
"name": "transaction_hash",
"summary": "The hash of the requested transaction",
"required": true,
"schema": {
"$ref": "#/components/schemas/TXN_HASH"
}
}
],
"result": {
"name": "result",
"schema": {
"$ref": "#/components/schemas/TXN_RECEIPT"
}
},
"errors": [
{
"$ref": "#/components/errors/TXN_HASH_NOT_FOUND"
}
]
},
{
"name": "starknet_getClass",
"summary": "Get the contract class definition in the given block associated with the given hash",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "class_hash",
"description": "The hash of the requested contract class",
"required": true,
"schema": {
"$ref": "#/components/schemas/FELT"
}
}
],
"result": {
"name": "result",
"description": "The contract class, if found",
"schema": {
"$ref": "#/components/schemas/CONTRACT_CLASS"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/CLASS_HASH_NOT_FOUND"
}
]
},
{
"name": "starknet_getClassHashAt",
"summary": "Get the contract class hash in the given block for the contract deployed at the given address",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose class hash will be returned",
"required": true,
"schema": {
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The class hash of the given contract",
"schema": {
"$ref": "#/components/schemas/FELT"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
}
]
},
{
"name": "starknet_getClassAt",
"summary": "Get the contract class definition in the given block at the given address",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose class definition will be returned",
"required": true,
"schema": {
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The contract class",
"schema": {
"$ref": "#/components/schemas/CONTRACT_CLASS"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
}
]
},
{
"name": "starknet_getBlockTransactionCount",
"summary": "Get the number of transactions in a block given a block id",
"description": "Returns the number of transactions in the designated block.",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The number of transactions in the designated block",
"summary": "The number of transactions in the designated block",
"schema": {
"type": "integer",
"minimum": 0
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_call",
"summary": "call a starknet function without creating a StarkNet transaction",
"description": "Calls a function in a contract and returns the return value. Using this call will not create a transaction; hence, will not change the state",
"params": [
{
"name": "request",
"summary": "The details of the function call",
"schema": {
"$ref": "#/components/schemas/FUNCTION_CALL"
},
"required": true
},
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag, for the block referencing the state or call the transaction on.",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"summary": "The function's return value",
"description": "The function's return value, as defined in the Cairo output",
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FELT"
}
}
},
"errors": [
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
},
{
"$ref": "#/components/errors/INVALID_MESSAGE_SELECTOR"
},
{
"$ref": "#/components/errors/INVALID_CALL_DATA"
},
{
"$ref": "#/components/errors/CONTRACT_ERROR"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_estimateFee",
"summary": "estimate the fee for a given StarkNet transaction",
"description": "estimates the resources required by a transaction relative to a given state",
"params": [
{
"name": "request",
"summary": "The transaction to estimate",
"schema": {
"$ref": "#/components/schemas/BROADCASTED_TXN"
},
"required": true
},
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag, for the block referencing the state or call the transaction on.",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "the fee estimation",
"schema": {
"$ref": "#/components/schemas/FEE_ESTIMATE"
}
},
"errors": [
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
},
{
"$ref": "#/components/errors/INVALID_MESSAGE_SELECTOR"
},
{
"$ref": "#/components/errors/INVALID_CALL_DATA"
},
{
"$ref": "#/components/errors/CONTRACT_ERROR"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_blockNumber",
"summary": "Get the most recent accepted block number",
"params": [],
"result": {
"name": "result",
"description": "The latest block number",
"schema": {
"$ref": "#/components/schemas/BLOCK_NUMBER"
}
},
"errors": [
{
"$ref": "#/components/errors/NO_BLOCKS"
}
]
},
{
"name": "starknet_blockHashAndNumber",
"summary": "Get the most recent accepted block hash and number",
"params": [],
"result": {
"name": "result",
"description": "The latest block hash and number",
"schema": {
"type": "object",
"properties": {
"block_hash": {
"$ref": "#/components/schemas/BLOCK_HASH"
},
"block_number": {
"$ref": "#/components/schemas/BLOCK_NUMBER"
}
}
}
},
"errors": [
{
"$ref": "#/components/errors/NO_BLOCKS"
}
]
},
{
"name": "starknet_chainId",
"summary": "Return the currently configured StarkNet chain id",
"params": [],
"result": {
"name": "result",
"description": "The chain id this node is connected to",
"schema": {
"$ref": "#/components/schemas/CHAIN_ID"
}
}
},
{
"name": "starknet_pendingTransactions",
"summary": "Returns the transactions in the transaction pool, recognized by this sequencer",
"params": [],
"result": {
"name": "result",
"schema": {
"type": "array",
"title": "Pending Transactions",
"items": {
"$ref": "#/components/schemas/TXN"
}
}
}
},
{
"name": "starknet_syncing",
"summary": "Returns an object about the sync status, or false if the node is not synching",
"params": [],
"result": {
"name": "syncing",
"summary": "The state of the synchronization, or false if the node is not synchronizing",
"description": "The status of the node, if it is currently synchronizing state. FALSE otherwise",
"schema": {
"oneOf": [
{
"type": "boolean",
"description": "only legal value is FALSE here"
},
{
"$ref": "#/components/schemas/SYNC_STATUS"
}
]
}
}
},
{
"name": "starknet_getEvents",
"summary": "Returns all events matching the given filter",
"description": "Returns all event objects matching the conditions in the provided filter",
"params": [
{
"name": "filter",
"summary": "The conditions used to filter the returned events",
"required": true,
"schema": {
"allOf": [
{
"$ref": "#/components/schemas/EVENT_FILTER"
},
{
"$ref": "#/components/schemas/RESULT_PAGE_REQUEST"
}
]
}
}
],
"result": {
"name": "events",
"description": "All the event objects matching the filter",
"schema": {
"type": "object",
"properties": {
"events": {
"type": "array",
"title": "Matching Events",
"items": {
"$ref": "#/components/schemas/EMITTED_EVENT"
}
},
"continuation_token": {
"description": "a pointer to the last element of the delivered page, use this token in a subsequent query to obtain the next page",
"type": "string"
}
},
"required": [
"events"
]
}
},
"errors": [
{
"$ref": "#/components/errors/PAGE_SIZE_TOO_BIG"
},
{
"$ref": "#/components/errors/INVALID_CONTINUATION_TOKEN"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getNonce",
"summary": "Get the nonce associated with the given address in the given block",
"params": [
{
"name": "block_id",
"description": "The hash of the requested block, or number (height) of the requested block, or a block tag",
"required": true,
"schema": {
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose nonce we're seeking",
"required": true,
"schema": {
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The last nonce used for the given contract.",
"schema": {
"$ref": "#/components/schemas/FELT"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
}
]
}
],
"components": {
"contentDescriptors": {},
"schemas": {
"RESULT_PAGE_REQUEST": {
"type": "object",
"properties": {
"continuation_token": {
"description": "a pointer to the last element of the delivered page, use this token in a subsequent query to obtain the next page",
"type": "string"
},
"chunk_size": {
"type": "integer",
"minimum": 1
}
},
"required": [
"chunk_size"
]
},
"EMITTED_EVENT": {
"title": "An event emitted as a result of transaction execution",
"description": "Event information decorated with metadata on where it was emitted",
"allOf": [
{
"title": "The event information",
"$ref": "#/components/schemas/EVENT"
},
{
"title": "The event emission information",
"type": "object",
"properties": {
"block_hash": {
"title": "The hash of the block in which the event was emitted",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"block_number": {
"title": "The number of the block in which the event was emitted",
"$ref": "#/components/schemas/BLOCK_NUMBER"
},
"transaction_hash": {
"title": "The transaction that emitted the event",
"$ref": "#/components/schemas/TXN_HASH"
}
}
}
]
},
"EVENT": {
"title": "A StarkNet event",
"allOf": [
{
"type": "object",
"properties": {
"from_address": {
"$ref": "#/components/schemas/ADDRESS"
}
}
},
{
"$ref": "#/components/schemas/EVENT_CONTENT"
}
]
},
"EVENT_CONTENT": {
"title": "Event Content",
"description": "The content of an event",
"type": "object",
"properties": {
"keys": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FELT"
}
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FELT"
}
}
}
},
"EVENT_FILTER": {
"title": "An event filter/query",
"type": "object",
"properties": {
"from_block": {
"title": "from block",
"$ref": "#/components/schemas/BLOCK_ID"
},
"to_block": {
"title": "to block",
"$ref": "#/components/schemas/BLOCK_ID"
},
"address": {
"title": "from contract",
"$ref": "#/components/schemas/ADDRESS"
},
"keys": {
"title": "filter key values",
"description": "The values used to filter the events",
"type": "array",
"items": {
"title": "event key value",
"$ref": "#/components/schemas/FELT"
}
}
}
},
"BLOCK_ID": {
"title": "Block hash, number or tag",
"oneOf": [
{
"type": "object",
"properties": {
"block_hash": {
"$ref": "#/components/schemas/BLOCK_HASH"
}
}
},
{
"type": "object",
"properties": {
"block_number": {
"$ref": "#/components/schemas/BLOCK_NUMBER"
}
}
},
{
"$ref": "#/components/schemas/BLOCK_TAG"
}
]
},
"BLOCK_TAG": {
"type": "string",
"description": "A tag specifying a dynamic reference to a block",
"enum": [
"latest",
"pending"
]
},
"SYNC_STATUS": {
"type": "object",
"description": "An object describing the node synchronization status",
"properties": {
"starting_block_hash": {
"description": "The hash of the block from which the sync started",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"starting_block_num": {
"description": "The number (height) of the block from which the sync started",
"$ref": "#/components/schemas/NUM_AS_HEX"
},
"current_block_hash": {
"description": "The hash of the current block being synchronized",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"current_block_num": {
"description": "The number (height) of the current block being synchronized",
"$ref": "#/components/schemas/NUM_AS_HEX"
},
"highest_block_hash": {
"description": "The hash of the estimated highest block to be synchronized",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"highest_block_num": {
"description": "The number (height) of the estimated highest block to be synchronized",
"$ref": "#/components/schemas/NUM_AS_HEX"
}
}
},
"NUM_AS_HEX": {
"title": "An integer number in hex format (0x...)",
"type": "string",
"pattern": "^0x[a-fA-F0-9]+$"
},
"CHAIN_ID": {
"title": "chainId",
"description": "StarkNet chain id, given in hex representation.",
"type": "string",
"pattern": "^0x[a-fA-F0-9]+$"
},
"STATE_UPDATE": {
"type": "object",
"properties": {
"block_hash": {
"$ref": "#/components/schemas/BLOCK_HASH"
},
"new_root": {
"description": "The new global state root",
"$ref": "#/components/schemas/FELT"
},
"old_root": {
"description": "The previous global state root",
"$ref": "#/components/schemas/FELT"
},
"state_diff": {
"description": "The change in state applied in this block, given as a mapping of addresses to the new values and/or new contracts",
"type": "object",
"properties": {
"storage_diffs": {
"type": "array",
"items": {
"description": "The changes in the storage per contract address",
"$ref": "#/components/schemas/CONTRACT_STORAGE_DIFF_ITEM"
}
},
"declared_contract_hashes": {
"type": "array",
"items": {
"description": "The hash of a new contract declared as part of the new state",
"$ref": "#/components/schemas/FELT"
}
},
"deployed_contracts": {
"type": "array",
"items": {
"description": "A new contract deployed as part of the new state",
"$ref": "#/components/schemas/DEPLOYED_CONTRACT_ITEM"
}
},
"nonces": {
"type": "array",
"items": {
"description": "The updated nonce per contract address",
"type": "object",
"properties": {
"contract_address": {
"description": "The address of the contract",
"$ref": "#/components/schemas/ADDRESS"
},
"nonce": {
"description": "The nonce for the given address at the end of the block",
"$ref": "#/components/schemas/FELT"
}
}
}
}
}
}
}
},
"ADDRESS": {
"$ref": "#/components/schemas/FELT"
},
"STORAGE_KEY": {
"type": "string",
"title": "A storage key",
"$comment": "A storage key, represented as a string of hex digits",
"description": "A storage key. Represented as up to 62 hex digits, 3 bits, and 5 leading zeroes.",
"pattern": "^0x0[0-7]{1}[a-fA-F0-9]{0,62}$"
},
"ETH_ADDRESS": {
"type": "string",
"$comment": "An ethereum address",
"description": "an ethereum address represented as 40 hex digits",
"pattern": "^0x[a-fA-F0-9]{40}$"
},
"TXN_HASH": {
"$ref": "#/components/schemas/FELT",
"description": "The transaction hash, as assigned in StarkNet",
"title": "A transaction's hash"
},
"FELT": {
"type": "string",
"title": "Field element",
"$comment": "A field element, represented as a string of hex digits",
"description": "A field element. Represented as up to 63 hex digits and leading 4 bits zeroed.",
"pattern": "^0x0[a-fA-F0-9]{1,63}$"
},
"BLOCK_NUMBER": {
"description": "The block's number (its height)",
"type": "integer",
"minimum": 0
},
"BLOCK_HASH": {
"$ref": "#/components/schemas/FELT"
},
"BLOCK_BODY_WITH_TX_HASHES": {
"type": "object",
"properties": {
"transactions": {
"description": "The hashes of the transactions included in this block",
"type": "array",
"items": {
"description": "The hash of a single transaction",
"$ref": "#/components/schemas/TXN_HASH"
}
}
}
},
"BLOCK_BODY_WITH_TXS": {
"type": "object",
"properties": {
"transactions": {
"description": "The transactions in this block",
"type": "array",
"items": {
"$ref": "#/components/schemas/TXN"
}
}
}
},
"BLOCK_HEADER": {
"block_hash": {
"$ref": "#/components/schemas/BLOCK_HASH"
},
"parent_hash": {
"description": "The hash of this block's parent",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"block_number": {
"description": "The block number (its height)",
"$ref": "#/components/schemas/BLOCK_NUMBER"
},
"new_root": {
"description": "The new global state root",
"$ref": "#/components/schemas/FELT"
},
"timestamp": {
"description": "The time in which the block was created, encoded in Unix time",
"type": "integer",
"minimum": 0
},
"sequencer_address": {
"description": "The StarkNet identity of the sequencer submitting this block",
"$ref": "#/components/schemas/FELT"
}
},
"BLOCK_WITH_TX_HASHES": {
"title": "The block object",
"allOf": [
{
"type": "object",
"properties": {
"status": {
"$ref": "#/components/schemas/BLOCK_STATUS"
}
}