-
Notifications
You must be signed in to change notification settings - Fork 76
/
starknet_api_openrpc.json
3945 lines (3945 loc) · 165 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.6.0",
"title": "StarkNet Node API",
"license": {}
},
"servers": [],
"methods": [
{
"name": "starknet_specVersion",
"summary": "Returns the version of the Starknet JSON-RPC specification being used",
"params": [],
"result": {
"name": "result",
"description": "Semver of Starknet's JSON-RPC spec being used",
"required": true,
"schema": {
"title": "JSON-RPC spec version",
"type": "string"
}
}
},
{
"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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The resulting block information with transaction hashes",
"schema": {
"title": "Starknet get block hash with tx hashes result",
"oneOf": [
{
"title": "Block with transaction hashes",
"$ref": "#/components/schemas/BLOCK_WITH_TX_HASHES"
},
{
"title": "Pending block with transaction 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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The resulting block information with full transactions",
"schema": {
"title": "Starknet get block with txs result",
"oneOf": [
{
"title": "Block with transactions",
"$ref": "#/components/schemas/BLOCK_WITH_TXS"
},
{
"title": "Pending block with transactions",
"$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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "The information about the state update of the requested block",
"schema": {
"title": "Starknet get state update result",
"oneOf": [
{
"title": "State update",
"$ref": "#/components/schemas/STATE_UPDATE"
},
{
"title": "Pending state update",
"$ref": "#/components/schemas/PENDING_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": {
"title": "Address",
"$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": {
"title": "Storage key",
"$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": {
"title": "Block id",
"$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": {
"title": "Field element",
"$ref": "#/components/schemas/FELT"
}
},
"errors": [
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_getTransactionStatus",
"summary": "Gets the transaction status (possibly reflecting that the tx is still in the mempool, or dropped from it)",
"paramStructure": "by-name",
"params": [
{
"name": "transaction_hash",
"summary": "The hash of the requested transaction",
"required": true,
"schema": {
"title": "Transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
}
],
"result": {
"name": "result",
"schema": {
"title": "Transaction status",
"type": "object",
"properties": {
"finality_status": {
"title": "finality status",
"$ref": "#/components/schemas/TXN_STATUS"
},
"execution_status": {
"title": "execution status",
"$ref": "#/components/schemas/TXN_EXECUTION_STATUS"
}
},
"required": [
"finality_status"
]
}
},
"errors": [
{
"$ref": "#/components/errors/TXN_HASH_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": {
"title": "Transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
}
],
"result": {
"name": "result",
"schema": {
"title": "Transaction",
"allOf": [
{
"$ref": "#/components/schemas/TXN"
},
{
"type": "object",
"properties": {
"transaction_hash": {
"title": "transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
},
"required": [
"transaction_hash"
]
}
]
}
},
"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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "index",
"summary": "The index in the block to search for the transaction",
"required": true,
"schema": {
"title": "Index",
"type": "integer",
"minimum": 0
}
}
],
"result": {
"name": "transactionResult",
"schema": {
"title": "Transaction",
"allOf": [
{
"$ref": "#/components/schemas/TXN"
},
{
"type": "object",
"properties": {
"transaction_hash": {
"title": "transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
},
"required": [
"transaction_hash"
]
}
]
}
},
"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": {
"title": "Transaction hash",
"$ref": "#/components/schemas/TXN_HASH"
}
}
],
"result": {
"name": "result",
"schema": {
"oneOf": [
{
"title": "Transaction receipt",
"$ref": "#/components/schemas/TXN_RECEIPT"
},
{
"title": "Pending transaction receipt",
"$ref": "#/components/schemas/PENDING_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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "class_hash",
"description": "The hash of the requested contract class",
"required": true,
"schema": {
"title": "Field element",
"$ref": "#/components/schemas/FELT"
}
}
],
"result": {
"name": "result",
"description": "The contract class, if found",
"schema": {
"title": "Starknet get class result",
"oneOf": [
{
"title": "Deprecated contract class",
"$ref": "#/components/schemas/DEPRECATED_CONTRACT_CLASS"
},
{
"title": "Contract class",
"$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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose class hash will be returned",
"required": true,
"schema": {
"title": "Address",
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The class hash of the given contract",
"schema": {
"title": "Field element",
"$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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose class definition will be returned",
"required": true,
"schema": {
"title": "Address",
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The contract class",
"schema": {
"title": "Starknet get class at result",
"oneOf": [
{
"title": "Deprecated contract class",
"$ref": "#/components/schemas/DEPRECATED_CONTRACT_CLASS"
},
{
"title": "Contract class",
"$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": {
"title": "Block id",
"$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": {
"title": "Block transaction count",
"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": {
"title": "Function call",
"$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": {
"title": "Block id",
"$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",
"title": "Field element",
"items": {
"$ref": "#/components/schemas/FELT"
}
}
},
"errors": [
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
},
{
"$ref": "#/components/errors/CONTRACT_ERROR"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_estimateFee",
"summary": "estimate the fee for of StarkNet transactions",
"description": "Estimates the resources required by a given sequence of transactions when applied on a given state. If one of the transactions reverts or fails due to any reason (e.g. validation failure or an internal error), a TRANSACTION_EXECUTION_ERROR is returned. For v0-2 transactions the estimate is given in wei, and for v3 transactions it is given in fri.",
"params": [
{
"name": "request",
"summary": "The transaction to estimate",
"schema": {
"type": "array",
"description": "a sequence of transactions to estimate, running each transaction on the state resulting from applying all the previous ones",
"title": "Transaction",
"items": {
"$ref": "#/components/schemas/BROADCASTED_TXN"
}
},
"required": true
},
{
"name": "simulation_flags",
"description": "describes what parts of the transaction should be executed",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SIMULATION_FLAG_FOR_ESTIMATE_FEE"
}
}
},
{
"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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "the fee estimations",
"schema": {
"title": "Estimation",
"type": "array",
"description": "a sequence of fee estimatione where the i'th estimate corresponds to the i'th transaction",
"items": {
"$ref": "#/components/schemas/FEE_ESTIMATE"
}
}
},
"errors": [
{
"$ref": "#/components/errors/TRANSACTION_EXECUTION_ERROR"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
}
]
},
{
"name": "starknet_estimateMessageFee",
"summary": "estimate the L2 fee of a message sent on L1",
"description": "estimates the resources required by the l1_handler transaction induced by the message",
"params": [
{
"name": "message",
"description": "the message's parameters",
"schema": {
"$ref": "#/components/schemas/MSG_FROM_L1"
},
"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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
}
],
"result": {
"name": "result",
"description": "the fee estimation",
"schema": {
"$ref": "#/components/schemas/FEE_ESTIMATE"
}
},
"errors": [
{
"$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": {
"title": "Block number",
"$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": {
"title": "Starknet block hash and number result",
"type": "object",
"properties": {
"block_hash": {
"title": "Block hash",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"block_number": {
"title": "Block number",
"$ref": "#/components/schemas/BLOCK_NUMBER"
}
},
"required": [
"block_hash",
"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": {
"title": "Chain id",
"$ref": "#/components/schemas/CHAIN_ID"
}
}
},
{
"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": {
"title": "SyncingStatus",
"oneOf": [
{
"type": "boolean",
"title": "False",
"description": "only legal value is FALSE here"
},
{
"title": "Sync status",
"$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": {
"title": "Events request",
"allOf": [
{
"title": "Event filter",
"$ref": "#/components/schemas/EVENT_FILTER"
},
{
"title": "Result page request",
"$ref": "#/components/schemas/RESULT_PAGE_REQUEST"
}
]
}
}
],
"result": {
"name": "events",
"description": "All the event objects matching the filter",
"schema": {
"title": "Events chunk",
"$ref": "#/components/schemas/EVENTS_CHUNK"
}
},
"errors": [
{
"$ref": "#/components/errors/PAGE_SIZE_TOO_BIG"
},
{
"$ref": "#/components/errors/INVALID_CONTINUATION_TOKEN"
},
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/TOO_MANY_KEYS_IN_FILTER"
}
]
},
{
"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": {
"title": "Block id",
"$ref": "#/components/schemas/BLOCK_ID"
}
},
{
"name": "contract_address",
"description": "The address of the contract whose nonce we're seeking",
"required": true,
"schema": {
"title": "Address",
"$ref": "#/components/schemas/ADDRESS"
}
}
],
"result": {
"name": "result",
"description": "The contract's nonce at the requested state",
"schema": {
"title": "Field element",
"$ref": "#/components/schemas/FELT"
}
},
"errors": [
{
"$ref": "#/components/errors/BLOCK_NOT_FOUND"
},
{
"$ref": "#/components/errors/CONTRACT_NOT_FOUND"
}
]
}
],
"components": {
"contentDescriptors": {},
"schemas": {
"EVENTS_CHUNK": {
"title": "Events chunk",
"type": "object",
"properties": {
"events": {
"type": "array",
"title": "Matching Events",
"items": {
"$ref": "#/components/schemas/EMITTED_EVENT"
}
},
"continuation_token": {
"title": "Continuation token",
"description": "Use this token in a subsequent query to obtain the next page. Should not appear if there are no more pages.",
"type": "string"
}
},
"required": [
"events"
]
},
"RESULT_PAGE_REQUEST": {
"title": "Result page request",
"type": "object",
"properties": {
"continuation_token": {
"title": "Continuation token",
"description": "The token returned from the previous query. If no token is provided the first page is returned.",
"type": "string"
},
"chunk_size": {
"title": "Chunk size",
"type": "integer",
"minimum": 1
}
},
"required": [
"chunk_size"
]
},
"EMITTED_EVENT": {
"title": "Emitted event",
"description": "Event information decorated with metadata on where it was emitted / An event emitted as a result of transaction execution",
"allOf": [
{
"title": "Event",
"description": "The event information",
"$ref": "#/components/schemas/EVENT"
},
{
"title": "Event context",
"description": "The event emission information",
"type": "object",
"properties": {
"block_hash": {
"title": "Block hash",
"description": "The hash of the block in which the event was emitted",
"$ref": "#/components/schemas/BLOCK_HASH"
},
"block_number": {
"title": "Block number",
"description": "The number of the block in which the event was emitted",
"$ref": "#/components/schemas/BLOCK_NUMBER"
},
"transaction_hash": {
"title": "Transaction hash",
"description": "The transaction that emitted the event",
"$ref": "#/components/schemas/TXN_HASH"
}
},
"required": [
"transaction_hash"
]
}
]
},
"EVENT": {
"title": "Event",
"description": "A StarkNet event",
"allOf": [
{
"title": "Event emitter",
"type": "object",
"properties": {
"from_address": {
"title": "From address",
"$ref": "#/components/schemas/ADDRESS"
}
},
"required": [
"from_address"
]
},
{
"title": "Event content",
"$ref": "#/components/schemas/EVENT_CONTENT"
}
]
},
"EVENT_CONTENT": {
"title": "Event content",
"description": "The content of an event",
"type": "object",
"properties": {
"keys": {
"type": "array",
"title": "Keys",
"items": {
"$ref": "#/components/schemas/FELT"
}
},
"data": {
"type": "array",
"title": "Data",
"items": {
"$ref": "#/components/schemas/FELT"
}
}
},
"required": [
"keys",
"data"
]
},
"EVENT_FILTER": {
"title": "Event filter",
"description": "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": {