@graphprotocol/graph-cli 0.37.0 → 0.37.1-alpha-20221207192322-dd39b34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +6 -3
  3. package/src/command-helpers/abi.js +2 -0
  4. package/src/command-helpers/network.test.js +13 -10
  5. package/tests/cli/validation/call-handler-with-tuple/generated/schema.ts +44 -0
  6. package/tests/cli/validation/example-values-found/generated/ExampleSubgraph/ExampleContract.ts +35 -0
  7. package/tests/cli/validation/example-values-found/generated/schema.ts +44 -0
  8. package/tests/cli/validation/source-without-address-is-valid/generated/ExampleSubgraph/ExampleContract.ts +35 -0
  9. package/.eslintrc +0 -10
  10. package/.prettierrc.json +0 -6
  11. package/.travis.yml +0 -37
  12. package/CONTRIBUTING.md +0 -16
  13. package/LICENSE-APACHE +0 -190
  14. package/LICENSE-MIT +0 -21
  15. package/NEWS.md +0 -80
  16. package/README.md +0 -146
  17. package/examples/basic-event-handlers/LICENSE +0 -21
  18. package/examples/basic-event-handlers/README.md +0 -3
  19. package/examples/basic-event-handlers/abis/Gravity.json +0 -1
  20. package/examples/basic-event-handlers/bin/Counter.bin +0 -1
  21. package/examples/basic-event-handlers/build/Gravity/Gravity.wasm +0 -0
  22. package/examples/basic-event-handlers/build/Gravity/abis/Gravity.json +0 -199
  23. package/examples/basic-event-handlers/build/schema.graphql +0 -13
  24. package/examples/basic-event-handlers/build/subgraph.yaml +0 -27
  25. package/examples/basic-event-handlers/contracts/Gravity.sol +0 -62
  26. package/examples/basic-event-handlers/contracts/Migrations.sol +0 -23
  27. package/examples/basic-event-handlers/generated/Gravity/Gravity.ts +0 -343
  28. package/examples/basic-event-handlers/generated/schema.ts +0 -133
  29. package/examples/basic-event-handlers/migrations/1_initial_migration.js +0 -5
  30. package/examples/basic-event-handlers/migrations/2_deploy_contract.js +0 -5
  31. package/examples/basic-event-handlers/migrations/3_create_gravatars.js +0 -14
  32. package/examples/basic-event-handlers/migrations/4_update_gravatars.js +0 -9
  33. package/examples/basic-event-handlers/package.json +0 -24
  34. package/examples/basic-event-handlers/schema.graphql +0 -13
  35. package/examples/basic-event-handlers/src/mapping.ts +0 -21
  36. package/examples/basic-event-handlers/subgraph.yaml +0 -27
  37. package/examples/basic-event-handlers/test/handlers.js +0 -110
  38. package/examples/basic-event-handlers/truffle.js +0 -34
  39. package/examples/basic-event-handlers/yarn.lock +0 -1027
  40. package/examples/example-subgraph/abis/ExampleContract.json +0 -2388
  41. package/examples/example-subgraph/dist/ExampleSubgraph/ExampleSubgraph.wasm +0 -0
  42. package/examples/example-subgraph/dist/ExampleSubgraph/abis/ExampleContract.json +0 -2394
  43. package/examples/example-subgraph/dist/abis/ExampleContract.json +0 -2388
  44. package/examples/example-subgraph/dist/schema.graphql +0 -37
  45. package/examples/example-subgraph/dist/subgraph.yaml +0 -26
  46. package/examples/example-subgraph/package.json +0 -15
  47. package/examples/example-subgraph/schema.graphql +0 -37
  48. package/examples/example-subgraph/src/mapping.ts +0 -286
  49. package/examples/example-subgraph/subgraph.yaml +0 -26
  50. package/examples/example-subgraph/yarn.lock +0 -28
  51. package/resources/test/docker-compose-standalone-node.yml +0 -20
  52. package/resources/test/docker-compose.yml +0 -43
@@ -1,2394 +0,0 @@
1
- [
2
- {
3
- "anonymous": false,
4
- "inputs": [
5
- {
6
- "indexed": true,
7
- "name": "exampleParam",
8
- "type": "string"
9
- }
10
- ],
11
- "name": "ExampleEvent",
12
- "type": "event"
13
- },
14
- {
15
- "name": "getAndReturnAddress",
16
- "type": "function",
17
- "stateMutability": "view",
18
- "inputs": [
19
- {
20
- "name": "x",
21
- "type": "address"
22
- }
23
- ],
24
- "outputs": [
25
- {
26
- "name": "x",
27
- "type": "address"
28
- }
29
- ]
30
- },
31
- {
32
- "name": "getAndReturnString",
33
- "type": "function",
34
- "stateMutability": "view",
35
- "inputs": [
36
- {
37
- "name": "x",
38
- "type": "string"
39
- }
40
- ],
41
- "outputs": [
42
- {
43
- "name": "x",
44
- "type": "string"
45
- }
46
- ]
47
- },
48
- {
49
- "name": "getAndReturnBool",
50
- "type": "function",
51
- "stateMutability": "view",
52
- "inputs": [
53
- {
54
- "name": "x",
55
- "type": "bool"
56
- }
57
- ],
58
- "outputs": [
59
- {
60
- "name": "x",
61
- "type": "bool"
62
- }
63
- ]
64
- },
65
- {
66
- "name": "getAndReturnByte",
67
- "type": "function",
68
- "stateMutability": "view",
69
- "inputs": [
70
- {
71
- "name": "x",
72
- "type": "byte"
73
- }
74
- ],
75
- "outputs": [
76
- {
77
- "name": "x",
78
- "type": "byte"
79
- }
80
- ]
81
- },
82
- {
83
- "name": "getAndReturnBytes1",
84
- "type": "function",
85
- "stateMutability": "view",
86
- "inputs": [
87
- {
88
- "name": "x",
89
- "type": "bytes1"
90
- }
91
- ],
92
- "outputs": [
93
- {
94
- "name": "x",
95
- "type": "bytes1"
96
- }
97
- ]
98
- },
99
- {
100
- "name": "getAndReturnBytes32",
101
- "type": "function",
102
- "stateMutability": "view",
103
- "inputs": [
104
- {
105
- "name": "x",
106
- "type": "bytes32"
107
- }
108
- ],
109
- "outputs": [
110
- {
111
- "name": "x",
112
- "type": "bytes32"
113
- }
114
- ]
115
- },
116
- {
117
- "name": "getAndReturnInt8",
118
- "type": "function",
119
- "stateMutability": "view",
120
- "inputs": [
121
- {
122
- "name": "x",
123
- "type": "int8"
124
- }
125
- ],
126
- "outputs": [
127
- {
128
- "name": "x",
129
- "type": "int8"
130
- }
131
- ]
132
- },
133
- {
134
- "name": "getAndReturnInt16",
135
- "type": "function",
136
- "stateMutability": "view",
137
- "inputs": [
138
- {
139
- "name": "x",
140
- "type": "int16"
141
- }
142
- ],
143
- "outputs": [
144
- {
145
- "name": "x",
146
- "type": "int16"
147
- }
148
- ]
149
- },
150
- {
151
- "name": "getAndReturnInt24",
152
- "type": "function",
153
- "stateMutability": "view",
154
- "inputs": [
155
- {
156
- "name": "x",
157
- "type": "int24"
158
- }
159
- ],
160
- "outputs": [
161
- {
162
- "name": "x",
163
- "type": "int24"
164
- }
165
- ]
166
- },
167
- {
168
- "name": "getAndReturnInt32",
169
- "type": "function",
170
- "stateMutability": "view",
171
- "inputs": [
172
- {
173
- "name": "x",
174
- "type": "int32"
175
- }
176
- ],
177
- "outputs": [
178
- {
179
- "name": "x",
180
- "type": "int32"
181
- }
182
- ]
183
- },
184
- {
185
- "name": "getAndReturnInt40",
186
- "type": "function",
187
- "stateMutability": "view",
188
- "inputs": [
189
- {
190
- "name": "x",
191
- "type": "int40"
192
- }
193
- ],
194
- "outputs": [
195
- {
196
- "name": "x",
197
- "type": "int40"
198
- }
199
- ]
200
- },
201
- {
202
- "name": "getAndReturnInt48",
203
- "type": "function",
204
- "stateMutability": "view",
205
- "inputs": [
206
- {
207
- "name": "x",
208
- "type": "int48"
209
- }
210
- ],
211
- "outputs": [
212
- {
213
- "name": "x",
214
- "type": "int48"
215
- }
216
- ]
217
- },
218
- {
219
- "name": "getAndReturnInt56",
220
- "type": "function",
221
- "stateMutability": "view",
222
- "inputs": [
223
- {
224
- "name": "x",
225
- "type": "int56"
226
- }
227
- ],
228
- "outputs": [
229
- {
230
- "name": "x",
231
- "type": "int56"
232
- }
233
- ]
234
- },
235
- {
236
- "name": "getAndReturnInt64",
237
- "type": "function",
238
- "stateMutability": "view",
239
- "inputs": [
240
- {
241
- "name": "x",
242
- "type": "int64"
243
- }
244
- ],
245
- "outputs": [
246
- {
247
- "name": "x",
248
- "type": "int64"
249
- }
250
- ]
251
- },
252
- {
253
- "name": "getAndReturnInt72",
254
- "type": "function",
255
- "stateMutability": "view",
256
- "inputs": [
257
- {
258
- "name": "x",
259
- "type": "int72"
260
- }
261
- ],
262
- "outputs": [
263
- {
264
- "name": "x",
265
- "type": "int72"
266
- }
267
- ]
268
- },
269
- {
270
- "name": "getAndReturnInt80",
271
- "type": "function",
272
- "stateMutability": "view",
273
- "inputs": [
274
- {
275
- "name": "x",
276
- "type": "int80"
277
- }
278
- ],
279
- "outputs": [
280
- {
281
- "name": "x",
282
- "type": "int80"
283
- }
284
- ]
285
- },
286
- {
287
- "name": "getAndReturnInt88",
288
- "type": "function",
289
- "stateMutability": "view",
290
- "inputs": [
291
- {
292
- "name": "x",
293
- "type": "int88"
294
- }
295
- ],
296
- "outputs": [
297
- {
298
- "name": "x",
299
- "type": "int88"
300
- }
301
- ]
302
- },
303
- {
304
- "name": "getAndReturnInt96",
305
- "type": "function",
306
- "stateMutability": "view",
307
- "inputs": [
308
- {
309
- "name": "x",
310
- "type": "int96"
311
- }
312
- ],
313
- "outputs": [
314
- {
315
- "name": "x",
316
- "type": "int96"
317
- }
318
- ]
319
- },
320
- {
321
- "name": "getAndReturnInt104",
322
- "type": "function",
323
- "stateMutability": "view",
324
- "inputs": [
325
- {
326
- "name": "x",
327
- "type": "int104"
328
- }
329
- ],
330
- "outputs": [
331
- {
332
- "name": "x",
333
- "type": "int104"
334
- }
335
- ]
336
- },
337
- {
338
- "name": "getAndReturnInt112",
339
- "type": "function",
340
- "stateMutability": "view",
341
- "inputs": [
342
- {
343
- "name": "x",
344
- "type": "int112"
345
- }
346
- ],
347
- "outputs": [
348
- {
349
- "name": "x",
350
- "type": "int112"
351
- }
352
- ]
353
- },
354
- {
355
- "name": "getAndReturnInt120",
356
- "type": "function",
357
- "stateMutability": "view",
358
- "inputs": [
359
- {
360
- "name": "x",
361
- "type": "int120"
362
- }
363
- ],
364
- "outputs": [
365
- {
366
- "name": "x",
367
- "type": "int120"
368
- }
369
- ]
370
- },
371
- {
372
- "name": "getAndReturnInt128",
373
- "type": "function",
374
- "stateMutability": "view",
375
- "inputs": [
376
- {
377
- "name": "x",
378
- "type": "int128"
379
- }
380
- ],
381
- "outputs": [
382
- {
383
- "name": "x",
384
- "type": "int128"
385
- }
386
- ]
387
- },
388
- {
389
- "name": "getAndReturnInt136",
390
- "type": "function",
391
- "stateMutability": "view",
392
- "inputs": [
393
- {
394
- "name": "x",
395
- "type": "int136"
396
- }
397
- ],
398
- "outputs": [
399
- {
400
- "name": "x",
401
- "type": "int136"
402
- }
403
- ]
404
- },
405
- {
406
- "name": "getAndReturnInt144",
407
- "type": "function",
408
- "stateMutability": "view",
409
- "inputs": [
410
- {
411
- "name": "x",
412
- "type": "int144"
413
- }
414
- ],
415
- "outputs": [
416
- {
417
- "name": "x",
418
- "type": "int144"
419
- }
420
- ]
421
- },
422
- {
423
- "name": "getAndReturnInt152",
424
- "type": "function",
425
- "stateMutability": "view",
426
- "inputs": [
427
- {
428
- "name": "x",
429
- "type": "int152"
430
- }
431
- ],
432
- "outputs": [
433
- {
434
- "name": "x",
435
- "type": "int152"
436
- }
437
- ]
438
- },
439
- {
440
- "name": "getAndReturnInt160",
441
- "type": "function",
442
- "stateMutability": "view",
443
- "inputs": [
444
- {
445
- "name": "x",
446
- "type": "int160"
447
- }
448
- ],
449
- "outputs": [
450
- {
451
- "name": "x",
452
- "type": "int160"
453
- }
454
- ]
455
- },
456
- {
457
- "name": "getAndReturnInt168",
458
- "type": "function",
459
- "stateMutability": "view",
460
- "inputs": [
461
- {
462
- "name": "x",
463
- "type": "int168"
464
- }
465
- ],
466
- "outputs": [
467
- {
468
- "name": "x",
469
- "type": "int168"
470
- }
471
- ]
472
- },
473
- {
474
- "name": "getAndReturnInt176",
475
- "type": "function",
476
- "stateMutability": "view",
477
- "inputs": [
478
- {
479
- "name": "x",
480
- "type": "int176"
481
- }
482
- ],
483
- "outputs": [
484
- {
485
- "name": "x",
486
- "type": "int176"
487
- }
488
- ]
489
- },
490
- {
491
- "name": "getAndReturnInt184",
492
- "type": "function",
493
- "stateMutability": "view",
494
- "inputs": [
495
- {
496
- "name": "x",
497
- "type": "int184"
498
- }
499
- ],
500
- "outputs": [
501
- {
502
- "name": "x",
503
- "type": "int184"
504
- }
505
- ]
506
- },
507
- {
508
- "name": "getAndReturnInt192",
509
- "type": "function",
510
- "stateMutability": "view",
511
- "inputs": [
512
- {
513
- "name": "x",
514
- "type": "int192"
515
- }
516
- ],
517
- "outputs": [
518
- {
519
- "name": "x",
520
- "type": "int192"
521
- }
522
- ]
523
- },
524
- {
525
- "name": "getAndReturnInt200",
526
- "type": "function",
527
- "stateMutability": "view",
528
- "inputs": [
529
- {
530
- "name": "x",
531
- "type": "int200"
532
- }
533
- ],
534
- "outputs": [
535
- {
536
- "name": "x",
537
- "type": "int200"
538
- }
539
- ]
540
- },
541
- {
542
- "name": "getAndReturnInt208",
543
- "type": "function",
544
- "stateMutability": "view",
545
- "inputs": [
546
- {
547
- "name": "x",
548
- "type": "int208"
549
- }
550
- ],
551
- "outputs": [
552
- {
553
- "name": "x",
554
- "type": "int208"
555
- }
556
- ]
557
- },
558
- {
559
- "name": "getAndReturnInt216",
560
- "type": "function",
561
- "stateMutability": "view",
562
- "inputs": [
563
- {
564
- "name": "x",
565
- "type": "int216"
566
- }
567
- ],
568
- "outputs": [
569
- {
570
- "name": "x",
571
- "type": "int216"
572
- }
573
- ]
574
- },
575
- {
576
- "name": "getAndReturnInt224",
577
- "type": "function",
578
- "stateMutability": "view",
579
- "inputs": [
580
- {
581
- "name": "x",
582
- "type": "int224"
583
- }
584
- ],
585
- "outputs": [
586
- {
587
- "name": "x",
588
- "type": "int224"
589
- }
590
- ]
591
- },
592
- {
593
- "name": "getAndReturnInt232",
594
- "type": "function",
595
- "stateMutability": "view",
596
- "inputs": [
597
- {
598
- "name": "x",
599
- "type": "int232"
600
- }
601
- ],
602
- "outputs": [
603
- {
604
- "name": "x",
605
- "type": "int232"
606
- }
607
- ]
608
- },
609
- {
610
- "name": "getAndReturnInt240",
611
- "type": "function",
612
- "stateMutability": "view",
613
- "inputs": [
614
- {
615
- "name": "x",
616
- "type": "int240"
617
- }
618
- ],
619
- "outputs": [
620
- {
621
- "name": "x",
622
- "type": "int240"
623
- }
624
- ]
625
- },
626
- {
627
- "name": "getAndReturnInt248",
628
- "type": "function",
629
- "stateMutability": "view",
630
- "inputs": [
631
- {
632
- "name": "x",
633
- "type": "int248"
634
- }
635
- ],
636
- "outputs": [
637
- {
638
- "name": "x",
639
- "type": "int248"
640
- }
641
- ]
642
- },
643
- {
644
- "name": "getAndReturnInt256",
645
- "type": "function",
646
- "stateMutability": "view",
647
- "inputs": [
648
- {
649
- "name": "x",
650
- "type": "int256"
651
- }
652
- ],
653
- "outputs": [
654
- {
655
- "name": "x",
656
- "type": "int256"
657
- }
658
- ]
659
- },
660
- {
661
- "name": "getAndReturnUint8",
662
- "type": "function",
663
- "stateMutability": "view",
664
- "inputs": [
665
- {
666
- "name": "x",
667
- "type": "uint8"
668
- }
669
- ],
670
- "outputs": [
671
- {
672
- "name": "x",
673
- "type": "uint8"
674
- }
675
- ]
676
- },
677
- {
678
- "name": "getAndReturnUint16",
679
- "type": "function",
680
- "stateMutability": "view",
681
- "inputs": [
682
- {
683
- "name": "x",
684
- "type": "uint16"
685
- }
686
- ],
687
- "outputs": [
688
- {
689
- "name": "x",
690
- "type": "uint16"
691
- }
692
- ]
693
- },
694
- {
695
- "name": "getAndReturnUint24",
696
- "type": "function",
697
- "stateMutability": "view",
698
- "inputs": [
699
- {
700
- "name": "x",
701
- "type": "uint24"
702
- }
703
- ],
704
- "outputs": [
705
- {
706
- "name": "x",
707
- "type": "uint24"
708
- }
709
- ]
710
- },
711
- {
712
- "name": "getAndReturnUint32",
713
- "type": "function",
714
- "stateMutability": "view",
715
- "inputs": [
716
- {
717
- "name": "x",
718
- "type": "uint32"
719
- }
720
- ],
721
- "outputs": [
722
- {
723
- "name": "x",
724
- "type": "uint32"
725
- }
726
- ]
727
- },
728
- {
729
- "name": "getAndReturnUint40",
730
- "type": "function",
731
- "stateMutability": "view",
732
- "inputs": [
733
- {
734
- "name": "x",
735
- "type": "uint40"
736
- }
737
- ],
738
- "outputs": [
739
- {
740
- "name": "x",
741
- "type": "uint40"
742
- }
743
- ]
744
- },
745
- {
746
- "name": "getAndReturnUint48",
747
- "type": "function",
748
- "stateMutability": "view",
749
- "inputs": [
750
- {
751
- "name": "x",
752
- "type": "uint48"
753
- }
754
- ],
755
- "outputs": [
756
- {
757
- "name": "x",
758
- "type": "uint48"
759
- }
760
- ]
761
- },
762
- {
763
- "name": "getAndReturnUint56",
764
- "type": "function",
765
- "stateMutability": "view",
766
- "inputs": [
767
- {
768
- "name": "x",
769
- "type": "uint56"
770
- }
771
- ],
772
- "outputs": [
773
- {
774
- "name": "x",
775
- "type": "uint56"
776
- }
777
- ]
778
- },
779
- {
780
- "name": "getAndReturnUint64",
781
- "type": "function",
782
- "stateMutability": "view",
783
- "inputs": [
784
- {
785
- "name": "x",
786
- "type": "uint64"
787
- }
788
- ],
789
- "outputs": [
790
- {
791
- "name": "x",
792
- "type": "uint64"
793
- }
794
- ]
795
- },
796
- {
797
- "name": "getAndReturnUint72",
798
- "type": "function",
799
- "stateMutability": "view",
800
- "inputs": [
801
- {
802
- "name": "x",
803
- "type": "uint72"
804
- }
805
- ],
806
- "outputs": [
807
- {
808
- "name": "x",
809
- "type": "uint72"
810
- }
811
- ]
812
- },
813
- {
814
- "name": "getAndReturnUint80",
815
- "type": "function",
816
- "stateMutability": "view",
817
- "inputs": [
818
- {
819
- "name": "x",
820
- "type": "uint80"
821
- }
822
- ],
823
- "outputs": [
824
- {
825
- "name": "x",
826
- "type": "uint80"
827
- }
828
- ]
829
- },
830
- {
831
- "name": "getAndReturnUint88",
832
- "type": "function",
833
- "stateMutability": "view",
834
- "inputs": [
835
- {
836
- "name": "x",
837
- "type": "uint88"
838
- }
839
- ],
840
- "outputs": [
841
- {
842
- "name": "x",
843
- "type": "uint88"
844
- }
845
- ]
846
- },
847
- {
848
- "name": "getAndReturnUint96",
849
- "type": "function",
850
- "stateMutability": "view",
851
- "inputs": [
852
- {
853
- "name": "x",
854
- "type": "uint96"
855
- }
856
- ],
857
- "outputs": [
858
- {
859
- "name": "x",
860
- "type": "uint96"
861
- }
862
- ]
863
- },
864
- {
865
- "name": "getAndReturnUint104",
866
- "type": "function",
867
- "stateMutability": "view",
868
- "inputs": [
869
- {
870
- "name": "x",
871
- "type": "uint104"
872
- }
873
- ],
874
- "outputs": [
875
- {
876
- "name": "x",
877
- "type": "uint104"
878
- }
879
- ]
880
- },
881
- {
882
- "name": "getAndReturnUint112",
883
- "type": "function",
884
- "stateMutability": "view",
885
- "inputs": [
886
- {
887
- "name": "x",
888
- "type": "uint112"
889
- }
890
- ],
891
- "outputs": [
892
- {
893
- "name": "x",
894
- "type": "uint112"
895
- }
896
- ]
897
- },
898
- {
899
- "name": "getAndReturnUint120",
900
- "type": "function",
901
- "stateMutability": "view",
902
- "inputs": [
903
- {
904
- "name": "x",
905
- "type": "uint120"
906
- }
907
- ],
908
- "outputs": [
909
- {
910
- "name": "x",
911
- "type": "uint120"
912
- }
913
- ]
914
- },
915
- {
916
- "name": "getAndReturnUint128",
917
- "type": "function",
918
- "stateMutability": "view",
919
- "inputs": [
920
- {
921
- "name": "x",
922
- "type": "uint128"
923
- }
924
- ],
925
- "outputs": [
926
- {
927
- "name": "x",
928
- "type": "uint128"
929
- }
930
- ]
931
- },
932
- {
933
- "name": "getAndReturnUint136",
934
- "type": "function",
935
- "stateMutability": "view",
936
- "inputs": [
937
- {
938
- "name": "x",
939
- "type": "uint136"
940
- }
941
- ],
942
- "outputs": [
943
- {
944
- "name": "x",
945
- "type": "uint136"
946
- }
947
- ]
948
- },
949
- {
950
- "name": "getAndReturnUint144",
951
- "type": "function",
952
- "stateMutability": "view",
953
- "inputs": [
954
- {
955
- "name": "x",
956
- "type": "uint144"
957
- }
958
- ],
959
- "outputs": [
960
- {
961
- "name": "x",
962
- "type": "uint144"
963
- }
964
- ]
965
- },
966
- {
967
- "name": "getAndReturnUint152",
968
- "type": "function",
969
- "stateMutability": "view",
970
- "inputs": [
971
- {
972
- "name": "x",
973
- "type": "uint152"
974
- }
975
- ],
976
- "outputs": [
977
- {
978
- "name": "x",
979
- "type": "uint152"
980
- }
981
- ]
982
- },
983
- {
984
- "name": "getAndReturnUint160",
985
- "type": "function",
986
- "stateMutability": "view",
987
- "inputs": [
988
- {
989
- "name": "x",
990
- "type": "uint160"
991
- }
992
- ],
993
- "outputs": [
994
- {
995
- "name": "x",
996
- "type": "uint160"
997
- }
998
- ]
999
- },
1000
- {
1001
- "name": "getAndReturnUint168",
1002
- "type": "function",
1003
- "stateMutability": "view",
1004
- "inputs": [
1005
- {
1006
- "name": "x",
1007
- "type": "uint168"
1008
- }
1009
- ],
1010
- "outputs": [
1011
- {
1012
- "name": "x",
1013
- "type": "uint168"
1014
- }
1015
- ]
1016
- },
1017
- {
1018
- "name": "getAndReturnUint176",
1019
- "type": "function",
1020
- "stateMutability": "view",
1021
- "inputs": [
1022
- {
1023
- "name": "x",
1024
- "type": "uint176"
1025
- }
1026
- ],
1027
- "outputs": [
1028
- {
1029
- "name": "x",
1030
- "type": "uint176"
1031
- }
1032
- ]
1033
- },
1034
- {
1035
- "name": "getAndReturnUint184",
1036
- "type": "function",
1037
- "stateMutability": "view",
1038
- "inputs": [
1039
- {
1040
- "name": "x",
1041
- "type": "uint184"
1042
- }
1043
- ],
1044
- "outputs": [
1045
- {
1046
- "name": "x",
1047
- "type": "uint184"
1048
- }
1049
- ]
1050
- },
1051
- {
1052
- "name": "getAndReturnUint192",
1053
- "type": "function",
1054
- "stateMutability": "view",
1055
- "inputs": [
1056
- {
1057
- "name": "x",
1058
- "type": "uint192"
1059
- }
1060
- ],
1061
- "outputs": [
1062
- {
1063
- "name": "x",
1064
- "type": "uint192"
1065
- }
1066
- ]
1067
- },
1068
- {
1069
- "name": "getAndReturnUint200",
1070
- "type": "function",
1071
- "stateMutability": "view",
1072
- "inputs": [
1073
- {
1074
- "name": "x",
1075
- "type": "uint200"
1076
- }
1077
- ],
1078
- "outputs": [
1079
- {
1080
- "name": "x",
1081
- "type": "uint200"
1082
- }
1083
- ]
1084
- },
1085
- {
1086
- "name": "getAndReturnUint208",
1087
- "type": "function",
1088
- "stateMutability": "view",
1089
- "inputs": [
1090
- {
1091
- "name": "x",
1092
- "type": "uint208"
1093
- }
1094
- ],
1095
- "outputs": [
1096
- {
1097
- "name": "x",
1098
- "type": "uint208"
1099
- }
1100
- ]
1101
- },
1102
- {
1103
- "name": "getAndReturnUint216",
1104
- "type": "function",
1105
- "stateMutability": "view",
1106
- "inputs": [
1107
- {
1108
- "name": "x",
1109
- "type": "uint216"
1110
- }
1111
- ],
1112
- "outputs": [
1113
- {
1114
- "name": "x",
1115
- "type": "uint216"
1116
- }
1117
- ]
1118
- },
1119
- {
1120
- "name": "getAndReturnUint224",
1121
- "type": "function",
1122
- "stateMutability": "view",
1123
- "inputs": [
1124
- {
1125
- "name": "x",
1126
- "type": "uint224"
1127
- }
1128
- ],
1129
- "outputs": [
1130
- {
1131
- "name": "x",
1132
- "type": "uint224"
1133
- }
1134
- ]
1135
- },
1136
- {
1137
- "name": "getAndReturnUint232",
1138
- "type": "function",
1139
- "stateMutability": "view",
1140
- "inputs": [
1141
- {
1142
- "name": "x",
1143
- "type": "uint232"
1144
- }
1145
- ],
1146
- "outputs": [
1147
- {
1148
- "name": "x",
1149
- "type": "uint232"
1150
- }
1151
- ]
1152
- },
1153
- {
1154
- "name": "getAndReturnUint240",
1155
- "type": "function",
1156
- "stateMutability": "view",
1157
- "inputs": [
1158
- {
1159
- "name": "x",
1160
- "type": "uint240"
1161
- }
1162
- ],
1163
- "outputs": [
1164
- {
1165
- "name": "x",
1166
- "type": "uint240"
1167
- }
1168
- ]
1169
- },
1170
- {
1171
- "name": "getAndReturnUint248",
1172
- "type": "function",
1173
- "stateMutability": "view",
1174
- "inputs": [
1175
- {
1176
- "name": "x",
1177
- "type": "uint248"
1178
- }
1179
- ],
1180
- "outputs": [
1181
- {
1182
- "name": "x",
1183
- "type": "uint248"
1184
- }
1185
- ]
1186
- },
1187
- {
1188
- "name": "getAndReturnUint256",
1189
- "type": "function",
1190
- "stateMutability": "view",
1191
- "inputs": [
1192
- {
1193
- "name": "x",
1194
- "type": "uint256"
1195
- }
1196
- ],
1197
- "outputs": [
1198
- {
1199
- "name": "x",
1200
- "type": "uint256"
1201
- }
1202
- ]
1203
- },
1204
- {
1205
- "name": "getAndReturnAddressArray",
1206
- "type": "function",
1207
- "stateMutability": "view",
1208
- "inputs": [
1209
- {
1210
- "name": "x",
1211
- "type": "address[]"
1212
- }
1213
- ],
1214
- "outputs": [
1215
- {
1216
- "name": "x",
1217
- "type": "address[]"
1218
- }
1219
- ]
1220
- },
1221
- {
1222
- "name": "getAndReturnStringArray",
1223
- "type": "function",
1224
- "stateMutability": "view",
1225
- "inputs": [
1226
- {
1227
- "name": "x",
1228
- "type": "string[]"
1229
- }
1230
- ],
1231
- "outputs": [
1232
- {
1233
- "name": "x",
1234
- "type": "string[]"
1235
- }
1236
- ]
1237
- },
1238
- {
1239
- "name": "getAndReturnBoolArray",
1240
- "type": "function",
1241
- "stateMutability": "view",
1242
- "inputs": [
1243
- {
1244
- "name": "x",
1245
- "type": "bool[]"
1246
- }
1247
- ],
1248
- "outputs": [
1249
- {
1250
- "name": "x",
1251
- "type": "bool[]"
1252
- }
1253
- ]
1254
- },
1255
- {
1256
- "name": "getAndReturnByteArray",
1257
- "type": "function",
1258
- "stateMutability": "view",
1259
- "inputs": [
1260
- {
1261
- "name": "x",
1262
- "type": "byte[]"
1263
- }
1264
- ],
1265
- "outputs": [
1266
- {
1267
- "name": "x",
1268
- "type": "byte[]"
1269
- }
1270
- ]
1271
- },
1272
- {
1273
- "name": "getAndReturnBytes1Array",
1274
- "type": "function",
1275
- "stateMutability": "view",
1276
- "inputs": [
1277
- {
1278
- "name": "x",
1279
- "type": "bytes1[]"
1280
- }
1281
- ],
1282
- "outputs": [
1283
- {
1284
- "name": "x",
1285
- "type": "bytes1[]"
1286
- }
1287
- ]
1288
- },
1289
- {
1290
- "name": "getAndReturnBytes32Array",
1291
- "type": "function",
1292
- "stateMutability": "view",
1293
- "inputs": [
1294
- {
1295
- "name": "x",
1296
- "type": "bytes32[]"
1297
- }
1298
- ],
1299
- "outputs": [
1300
- {
1301
- "name": "x",
1302
- "type": "bytes32[]"
1303
- }
1304
- ]
1305
- },
1306
- {
1307
- "name": "getAndReturnInt8Array",
1308
- "type": "function",
1309
- "stateMutability": "view",
1310
- "inputs": [
1311
- {
1312
- "name": "x",
1313
- "type": "int8[]"
1314
- }
1315
- ],
1316
- "outputs": [
1317
- {
1318
- "name": "x",
1319
- "type": "int8[]"
1320
- }
1321
- ]
1322
- },
1323
- {
1324
- "name": "getAndReturnInt16Array",
1325
- "type": "function",
1326
- "stateMutability": "view",
1327
- "inputs": [
1328
- {
1329
- "name": "x",
1330
- "type": "int16[]"
1331
- }
1332
- ],
1333
- "outputs": [
1334
- {
1335
- "name": "x",
1336
- "type": "int16[]"
1337
- }
1338
- ]
1339
- },
1340
- {
1341
- "name": "getAndReturnInt24Array",
1342
- "type": "function",
1343
- "stateMutability": "view",
1344
- "inputs": [
1345
- {
1346
- "name": "x",
1347
- "type": "int24[]"
1348
- }
1349
- ],
1350
- "outputs": [
1351
- {
1352
- "name": "x",
1353
- "type": "int24[]"
1354
- }
1355
- ]
1356
- },
1357
- {
1358
- "name": "getAndReturnInt32Array",
1359
- "type": "function",
1360
- "stateMutability": "view",
1361
- "inputs": [
1362
- {
1363
- "name": "x",
1364
- "type": "int32[]"
1365
- }
1366
- ],
1367
- "outputs": [
1368
- {
1369
- "name": "x",
1370
- "type": "int32[]"
1371
- }
1372
- ]
1373
- },
1374
- {
1375
- "name": "getAndReturnInt40Array",
1376
- "type": "function",
1377
- "stateMutability": "view",
1378
- "inputs": [
1379
- {
1380
- "name": "x",
1381
- "type": "int40[]"
1382
- }
1383
- ],
1384
- "outputs": [
1385
- {
1386
- "name": "x",
1387
- "type": "int40[]"
1388
- }
1389
- ]
1390
- },
1391
- {
1392
- "name": "getAndReturnInt48Array",
1393
- "type": "function",
1394
- "stateMutability": "view",
1395
- "inputs": [
1396
- {
1397
- "name": "x",
1398
- "type": "int48[]"
1399
- }
1400
- ],
1401
- "outputs": [
1402
- {
1403
- "name": "x",
1404
- "type": "int48[]"
1405
- }
1406
- ]
1407
- },
1408
- {
1409
- "name": "getAndReturnInt56Array",
1410
- "type": "function",
1411
- "stateMutability": "view",
1412
- "inputs": [
1413
- {
1414
- "name": "x",
1415
- "type": "int56[]"
1416
- }
1417
- ],
1418
- "outputs": [
1419
- {
1420
- "name": "x",
1421
- "type": "int56[]"
1422
- }
1423
- ]
1424
- },
1425
- {
1426
- "name": "getAndReturnInt64Array",
1427
- "type": "function",
1428
- "stateMutability": "view",
1429
- "inputs": [
1430
- {
1431
- "name": "x",
1432
- "type": "int64[]"
1433
- }
1434
- ],
1435
- "outputs": [
1436
- {
1437
- "name": "x",
1438
- "type": "int64[]"
1439
- }
1440
- ]
1441
- },
1442
- {
1443
- "name": "getAndReturnInt72Array",
1444
- "type": "function",
1445
- "stateMutability": "view",
1446
- "inputs": [
1447
- {
1448
- "name": "x",
1449
- "type": "int72[]"
1450
- }
1451
- ],
1452
- "outputs": [
1453
- {
1454
- "name": "x",
1455
- "type": "int72[]"
1456
- }
1457
- ]
1458
- },
1459
- {
1460
- "name": "getAndReturnInt80Array",
1461
- "type": "function",
1462
- "stateMutability": "view",
1463
- "inputs": [
1464
- {
1465
- "name": "x",
1466
- "type": "int80[]"
1467
- }
1468
- ],
1469
- "outputs": [
1470
- {
1471
- "name": "x",
1472
- "type": "int80[]"
1473
- }
1474
- ]
1475
- },
1476
- {
1477
- "name": "getAndReturnInt88Array",
1478
- "type": "function",
1479
- "stateMutability": "view",
1480
- "inputs": [
1481
- {
1482
- "name": "x",
1483
- "type": "int88[]"
1484
- }
1485
- ],
1486
- "outputs": [
1487
- {
1488
- "name": "x",
1489
- "type": "int88[]"
1490
- }
1491
- ]
1492
- },
1493
- {
1494
- "name": "getAndReturnInt96Array",
1495
- "type": "function",
1496
- "stateMutability": "view",
1497
- "inputs": [
1498
- {
1499
- "name": "x",
1500
- "type": "int96[]"
1501
- }
1502
- ],
1503
- "outputs": [
1504
- {
1505
- "name": "x",
1506
- "type": "int96[]"
1507
- }
1508
- ]
1509
- },
1510
- {
1511
- "name": "getAndReturnInt104Array",
1512
- "type": "function",
1513
- "stateMutability": "view",
1514
- "inputs": [
1515
- {
1516
- "name": "x",
1517
- "type": "int104[]"
1518
- }
1519
- ],
1520
- "outputs": [
1521
- {
1522
- "name": "x",
1523
- "type": "int104[]"
1524
- }
1525
- ]
1526
- },
1527
- {
1528
- "name": "getAndReturnInt112Array",
1529
- "type": "function",
1530
- "stateMutability": "view",
1531
- "inputs": [
1532
- {
1533
- "name": "x",
1534
- "type": "int112[]"
1535
- }
1536
- ],
1537
- "outputs": [
1538
- {
1539
- "name": "x",
1540
- "type": "int112[]"
1541
- }
1542
- ]
1543
- },
1544
- {
1545
- "name": "getAndReturnInt120Array",
1546
- "type": "function",
1547
- "stateMutability": "view",
1548
- "inputs": [
1549
- {
1550
- "name": "x",
1551
- "type": "int120[]"
1552
- }
1553
- ],
1554
- "outputs": [
1555
- {
1556
- "name": "x",
1557
- "type": "int120[]"
1558
- }
1559
- ]
1560
- },
1561
- {
1562
- "name": "getAndReturnInt128Array",
1563
- "type": "function",
1564
- "stateMutability": "view",
1565
- "inputs": [
1566
- {
1567
- "name": "x",
1568
- "type": "int128[]"
1569
- }
1570
- ],
1571
- "outputs": [
1572
- {
1573
- "name": "x",
1574
- "type": "int128[]"
1575
- }
1576
- ]
1577
- },
1578
- {
1579
- "name": "getAndReturnInt136Array",
1580
- "type": "function",
1581
- "stateMutability": "view",
1582
- "inputs": [
1583
- {
1584
- "name": "x",
1585
- "type": "int136[]"
1586
- }
1587
- ],
1588
- "outputs": [
1589
- {
1590
- "name": "x",
1591
- "type": "int136[]"
1592
- }
1593
- ]
1594
- },
1595
- {
1596
- "name": "getAndReturnInt144Array",
1597
- "type": "function",
1598
- "stateMutability": "view",
1599
- "inputs": [
1600
- {
1601
- "name": "x",
1602
- "type": "int144[]"
1603
- }
1604
- ],
1605
- "outputs": [
1606
- {
1607
- "name": "x",
1608
- "type": "int144[]"
1609
- }
1610
- ]
1611
- },
1612
- {
1613
- "name": "getAndReturnInt152Array",
1614
- "type": "function",
1615
- "stateMutability": "view",
1616
- "inputs": [
1617
- {
1618
- "name": "x",
1619
- "type": "int152[]"
1620
- }
1621
- ],
1622
- "outputs": [
1623
- {
1624
- "name": "x",
1625
- "type": "int152[]"
1626
- }
1627
- ]
1628
- },
1629
- {
1630
- "name": "getAndReturnInt160Array",
1631
- "type": "function",
1632
- "stateMutability": "view",
1633
- "inputs": [
1634
- {
1635
- "name": "x",
1636
- "type": "int160[]"
1637
- }
1638
- ],
1639
- "outputs": [
1640
- {
1641
- "name": "x",
1642
- "type": "int160[]"
1643
- }
1644
- ]
1645
- },
1646
- {
1647
- "name": "getAndReturnInt168Array",
1648
- "type": "function",
1649
- "stateMutability": "view",
1650
- "inputs": [
1651
- {
1652
- "name": "x",
1653
- "type": "int168[]"
1654
- }
1655
- ],
1656
- "outputs": [
1657
- {
1658
- "name": "x",
1659
- "type": "int168[]"
1660
- }
1661
- ]
1662
- },
1663
- {
1664
- "name": "getAndReturnInt176Array",
1665
- "type": "function",
1666
- "stateMutability": "view",
1667
- "inputs": [
1668
- {
1669
- "name": "x",
1670
- "type": "int176[]"
1671
- }
1672
- ],
1673
- "outputs": [
1674
- {
1675
- "name": "x",
1676
- "type": "int176[]"
1677
- }
1678
- ]
1679
- },
1680
- {
1681
- "name": "getAndReturnInt184Array",
1682
- "type": "function",
1683
- "stateMutability": "view",
1684
- "inputs": [
1685
- {
1686
- "name": "x",
1687
- "type": "int184[]"
1688
- }
1689
- ],
1690
- "outputs": [
1691
- {
1692
- "name": "x",
1693
- "type": "int184[]"
1694
- }
1695
- ]
1696
- },
1697
- {
1698
- "name": "getAndReturnInt192Array",
1699
- "type": "function",
1700
- "stateMutability": "view",
1701
- "inputs": [
1702
- {
1703
- "name": "x",
1704
- "type": "int192[]"
1705
- }
1706
- ],
1707
- "outputs": [
1708
- {
1709
- "name": "x",
1710
- "type": "int192[]"
1711
- }
1712
- ]
1713
- },
1714
- {
1715
- "name": "getAndReturnInt200Array",
1716
- "type": "function",
1717
- "stateMutability": "view",
1718
- "inputs": [
1719
- {
1720
- "name": "x",
1721
- "type": "int200[]"
1722
- }
1723
- ],
1724
- "outputs": [
1725
- {
1726
- "name": "x",
1727
- "type": "int200[]"
1728
- }
1729
- ]
1730
- },
1731
- {
1732
- "name": "getAndReturnInt208Array",
1733
- "type": "function",
1734
- "stateMutability": "view",
1735
- "inputs": [
1736
- {
1737
- "name": "x",
1738
- "type": "int208[]"
1739
- }
1740
- ],
1741
- "outputs": [
1742
- {
1743
- "name": "x",
1744
- "type": "int208[]"
1745
- }
1746
- ]
1747
- },
1748
- {
1749
- "name": "getAndReturnInt216Array",
1750
- "type": "function",
1751
- "stateMutability": "view",
1752
- "inputs": [
1753
- {
1754
- "name": "x",
1755
- "type": "int216[]"
1756
- }
1757
- ],
1758
- "outputs": [
1759
- {
1760
- "name": "x",
1761
- "type": "int216[]"
1762
- }
1763
- ]
1764
- },
1765
- {
1766
- "name": "getAndReturnInt224Array",
1767
- "type": "function",
1768
- "stateMutability": "view",
1769
- "inputs": [
1770
- {
1771
- "name": "x",
1772
- "type": "int224[]"
1773
- }
1774
- ],
1775
- "outputs": [
1776
- {
1777
- "name": "x",
1778
- "type": "int224[]"
1779
- }
1780
- ]
1781
- },
1782
- {
1783
- "name": "getAndReturnInt232Array",
1784
- "type": "function",
1785
- "stateMutability": "view",
1786
- "inputs": [
1787
- {
1788
- "name": "x",
1789
- "type": "int232[]"
1790
- }
1791
- ],
1792
- "outputs": [
1793
- {
1794
- "name": "x",
1795
- "type": "int232[]"
1796
- }
1797
- ]
1798
- },
1799
- {
1800
- "name": "getAndReturnInt240Array",
1801
- "type": "function",
1802
- "stateMutability": "view",
1803
- "inputs": [
1804
- {
1805
- "name": "x",
1806
- "type": "int240[]"
1807
- }
1808
- ],
1809
- "outputs": [
1810
- {
1811
- "name": "x",
1812
- "type": "int240[]"
1813
- }
1814
- ]
1815
- },
1816
- {
1817
- "name": "getAndReturnInt248Array",
1818
- "type": "function",
1819
- "stateMutability": "view",
1820
- "inputs": [
1821
- {
1822
- "name": "x",
1823
- "type": "int248[]"
1824
- }
1825
- ],
1826
- "outputs": [
1827
- {
1828
- "name": "x",
1829
- "type": "int248[]"
1830
- }
1831
- ]
1832
- },
1833
- {
1834
- "name": "getAndReturnInt256Array",
1835
- "type": "function",
1836
- "stateMutability": "view",
1837
- "inputs": [
1838
- {
1839
- "name": "x",
1840
- "type": "int256[]"
1841
- }
1842
- ],
1843
- "outputs": [
1844
- {
1845
- "name": "x",
1846
- "type": "int256[]"
1847
- }
1848
- ]
1849
- },
1850
- {
1851
- "name": "getAndReturnUint8Array",
1852
- "type": "function",
1853
- "stateMutability": "view",
1854
- "inputs": [
1855
- {
1856
- "name": "x",
1857
- "type": "uint8[]"
1858
- }
1859
- ],
1860
- "outputs": [
1861
- {
1862
- "name": "x",
1863
- "type": "uint8[]"
1864
- }
1865
- ]
1866
- },
1867
- {
1868
- "name": "getAndReturnUint16Array",
1869
- "type": "function",
1870
- "stateMutability": "view",
1871
- "inputs": [
1872
- {
1873
- "name": "x",
1874
- "type": "uint16[]"
1875
- }
1876
- ],
1877
- "outputs": [
1878
- {
1879
- "name": "x",
1880
- "type": "uint16[]"
1881
- }
1882
- ]
1883
- },
1884
- {
1885
- "name": "getAndReturnUint24Array",
1886
- "type": "function",
1887
- "stateMutability": "view",
1888
- "inputs": [
1889
- {
1890
- "name": "x",
1891
- "type": "uint24[]"
1892
- }
1893
- ],
1894
- "outputs": [
1895
- {
1896
- "name": "x",
1897
- "type": "uint24[]"
1898
- }
1899
- ]
1900
- },
1901
- {
1902
- "name": "getAndReturnUint32Array",
1903
- "type": "function",
1904
- "stateMutability": "view",
1905
- "inputs": [
1906
- {
1907
- "name": "x",
1908
- "type": "uint32[]"
1909
- }
1910
- ],
1911
- "outputs": [
1912
- {
1913
- "name": "x",
1914
- "type": "uint32[]"
1915
- }
1916
- ]
1917
- },
1918
- {
1919
- "name": "getAndReturnUint40Array",
1920
- "type": "function",
1921
- "stateMutability": "view",
1922
- "inputs": [
1923
- {
1924
- "name": "x",
1925
- "type": "uint40[]"
1926
- }
1927
- ],
1928
- "outputs": [
1929
- {
1930
- "name": "x",
1931
- "type": "uint40[]"
1932
- }
1933
- ]
1934
- },
1935
- {
1936
- "name": "getAndReturnUint48Array",
1937
- "type": "function",
1938
- "stateMutability": "view",
1939
- "inputs": [
1940
- {
1941
- "name": "x",
1942
- "type": "uint48[]"
1943
- }
1944
- ],
1945
- "outputs": [
1946
- {
1947
- "name": "x",
1948
- "type": "uint48[]"
1949
- }
1950
- ]
1951
- },
1952
- {
1953
- "name": "getAndReturnUint56Array",
1954
- "type": "function",
1955
- "stateMutability": "view",
1956
- "inputs": [
1957
- {
1958
- "name": "x",
1959
- "type": "uint56[]"
1960
- }
1961
- ],
1962
- "outputs": [
1963
- {
1964
- "name": "x",
1965
- "type": "uint56[]"
1966
- }
1967
- ]
1968
- },
1969
- {
1970
- "name": "getAndReturnUint64Array",
1971
- "type": "function",
1972
- "stateMutability": "view",
1973
- "inputs": [
1974
- {
1975
- "name": "x",
1976
- "type": "uint64[]"
1977
- }
1978
- ],
1979
- "outputs": [
1980
- {
1981
- "name": "x",
1982
- "type": "uint64[]"
1983
- }
1984
- ]
1985
- },
1986
- {
1987
- "name": "getAndReturnUint72Array",
1988
- "type": "function",
1989
- "stateMutability": "view",
1990
- "inputs": [
1991
- {
1992
- "name": "x",
1993
- "type": "uint72[]"
1994
- }
1995
- ],
1996
- "outputs": [
1997
- {
1998
- "name": "x",
1999
- "type": "uint72[]"
2000
- }
2001
- ]
2002
- },
2003
- {
2004
- "name": "getAndReturnUint80Array",
2005
- "type": "function",
2006
- "stateMutability": "view",
2007
- "inputs": [
2008
- {
2009
- "name": "x",
2010
- "type": "uint80[]"
2011
- }
2012
- ],
2013
- "outputs": [
2014
- {
2015
- "name": "x",
2016
- "type": "uint80[]"
2017
- }
2018
- ]
2019
- },
2020
- {
2021
- "name": "getAndReturnUint88Array",
2022
- "type": "function",
2023
- "stateMutability": "view",
2024
- "inputs": [
2025
- {
2026
- "name": "x",
2027
- "type": "uint88[]"
2028
- }
2029
- ],
2030
- "outputs": [
2031
- {
2032
- "name": "x",
2033
- "type": "uint88[]"
2034
- }
2035
- ]
2036
- },
2037
- {
2038
- "name": "getAndReturnUint96Array",
2039
- "type": "function",
2040
- "stateMutability": "view",
2041
- "inputs": [
2042
- {
2043
- "name": "x",
2044
- "type": "uint96[]"
2045
- }
2046
- ],
2047
- "outputs": [
2048
- {
2049
- "name": "x",
2050
- "type": "uint96[]"
2051
- }
2052
- ]
2053
- },
2054
- {
2055
- "name": "getAndReturnUint104Array",
2056
- "type": "function",
2057
- "stateMutability": "view",
2058
- "inputs": [
2059
- {
2060
- "name": "x",
2061
- "type": "uint104[]"
2062
- }
2063
- ],
2064
- "outputs": [
2065
- {
2066
- "name": "x",
2067
- "type": "uint104[]"
2068
- }
2069
- ]
2070
- },
2071
- {
2072
- "name": "getAndReturnUint112Array",
2073
- "type": "function",
2074
- "stateMutability": "view",
2075
- "inputs": [
2076
- {
2077
- "name": "x",
2078
- "type": "uint112[]"
2079
- }
2080
- ],
2081
- "outputs": [
2082
- {
2083
- "name": "x",
2084
- "type": "uint112[]"
2085
- }
2086
- ]
2087
- },
2088
- {
2089
- "name": "getAndReturnUint120Array",
2090
- "type": "function",
2091
- "stateMutability": "view",
2092
- "inputs": [
2093
- {
2094
- "name": "x",
2095
- "type": "uint120[]"
2096
- }
2097
- ],
2098
- "outputs": [
2099
- {
2100
- "name": "x",
2101
- "type": "uint120[]"
2102
- }
2103
- ]
2104
- },
2105
- {
2106
- "name": "getAndReturnUint128Array",
2107
- "type": "function",
2108
- "stateMutability": "view",
2109
- "inputs": [
2110
- {
2111
- "name": "x",
2112
- "type": "uint128[]"
2113
- }
2114
- ],
2115
- "outputs": [
2116
- {
2117
- "name": "x",
2118
- "type": "uint128[]"
2119
- }
2120
- ]
2121
- },
2122
- {
2123
- "name": "getAndReturnUint136Array",
2124
- "type": "function",
2125
- "stateMutability": "view",
2126
- "inputs": [
2127
- {
2128
- "name": "x",
2129
- "type": "uint136[]"
2130
- }
2131
- ],
2132
- "outputs": [
2133
- {
2134
- "name": "x",
2135
- "type": "uint136[]"
2136
- }
2137
- ]
2138
- },
2139
- {
2140
- "name": "getAndReturnUint144Array",
2141
- "type": "function",
2142
- "stateMutability": "view",
2143
- "inputs": [
2144
- {
2145
- "name": "x",
2146
- "type": "uint144[]"
2147
- }
2148
- ],
2149
- "outputs": [
2150
- {
2151
- "name": "x",
2152
- "type": "uint144[]"
2153
- }
2154
- ]
2155
- },
2156
- {
2157
- "name": "getAndReturnUint152Array",
2158
- "type": "function",
2159
- "stateMutability": "view",
2160
- "inputs": [
2161
- {
2162
- "name": "x",
2163
- "type": "uint152[]"
2164
- }
2165
- ],
2166
- "outputs": [
2167
- {
2168
- "name": "x",
2169
- "type": "uint152[]"
2170
- }
2171
- ]
2172
- },
2173
- {
2174
- "name": "getAndReturnUint160Array",
2175
- "type": "function",
2176
- "stateMutability": "view",
2177
- "inputs": [
2178
- {
2179
- "name": "x",
2180
- "type": "uint160[]"
2181
- }
2182
- ],
2183
- "outputs": [
2184
- {
2185
- "name": "x",
2186
- "type": "uint160[]"
2187
- }
2188
- ]
2189
- },
2190
- {
2191
- "name": "getAndReturnUint168Array",
2192
- "type": "function",
2193
- "stateMutability": "view",
2194
- "inputs": [
2195
- {
2196
- "name": "x",
2197
- "type": "uint168[]"
2198
- }
2199
- ],
2200
- "outputs": [
2201
- {
2202
- "name": "x",
2203
- "type": "uint168[]"
2204
- }
2205
- ]
2206
- },
2207
- {
2208
- "name": "getAndReturnUint176Array",
2209
- "type": "function",
2210
- "stateMutability": "view",
2211
- "inputs": [
2212
- {
2213
- "name": "x",
2214
- "type": "uint176[]"
2215
- }
2216
- ],
2217
- "outputs": [
2218
- {
2219
- "name": "x",
2220
- "type": "uint176[]"
2221
- }
2222
- ]
2223
- },
2224
- {
2225
- "name": "getAndReturnUint184Array",
2226
- "type": "function",
2227
- "stateMutability": "view",
2228
- "inputs": [
2229
- {
2230
- "name": "x",
2231
- "type": "uint184[]"
2232
- }
2233
- ],
2234
- "outputs": [
2235
- {
2236
- "name": "x",
2237
- "type": "uint184[]"
2238
- }
2239
- ]
2240
- },
2241
- {
2242
- "name": "getAndReturnUint192Array",
2243
- "type": "function",
2244
- "stateMutability": "view",
2245
- "inputs": [
2246
- {
2247
- "name": "x",
2248
- "type": "uint192[]"
2249
- }
2250
- ],
2251
- "outputs": [
2252
- {
2253
- "name": "x",
2254
- "type": "uint192[]"
2255
- }
2256
- ]
2257
- },
2258
- {
2259
- "name": "getAndReturnUint200Array",
2260
- "type": "function",
2261
- "stateMutability": "view",
2262
- "inputs": [
2263
- {
2264
- "name": "x",
2265
- "type": "uint200[]"
2266
- }
2267
- ],
2268
- "outputs": [
2269
- {
2270
- "name": "x",
2271
- "type": "uint200[]"
2272
- }
2273
- ]
2274
- },
2275
- {
2276
- "name": "getAndReturnUint208Array",
2277
- "type": "function",
2278
- "stateMutability": "view",
2279
- "inputs": [
2280
- {
2281
- "name": "x",
2282
- "type": "uint208[]"
2283
- }
2284
- ],
2285
- "outputs": [
2286
- {
2287
- "name": "x",
2288
- "type": "uint208[]"
2289
- }
2290
- ]
2291
- },
2292
- {
2293
- "name": "getAndReturnUint216Array",
2294
- "type": "function",
2295
- "stateMutability": "view",
2296
- "inputs": [
2297
- {
2298
- "name": "x",
2299
- "type": "uint216[]"
2300
- }
2301
- ],
2302
- "outputs": [
2303
- {
2304
- "name": "x",
2305
- "type": "uint216[]"
2306
- }
2307
- ]
2308
- },
2309
- {
2310
- "name": "getAndReturnUint224Array",
2311
- "type": "function",
2312
- "stateMutability": "view",
2313
- "inputs": [
2314
- {
2315
- "name": "x",
2316
- "type": "uint224[]"
2317
- }
2318
- ],
2319
- "outputs": [
2320
- {
2321
- "name": "x",
2322
- "type": "uint224[]"
2323
- }
2324
- ]
2325
- },
2326
- {
2327
- "name": "getAndReturnUint232Array",
2328
- "type": "function",
2329
- "stateMutability": "view",
2330
- "inputs": [
2331
- {
2332
- "name": "x",
2333
- "type": "uint232[]"
2334
- }
2335
- ],
2336
- "outputs": [
2337
- {
2338
- "name": "x",
2339
- "type": "uint232[]"
2340
- }
2341
- ]
2342
- },
2343
- {
2344
- "name": "getAndReturnUint240Array",
2345
- "type": "function",
2346
- "stateMutability": "view",
2347
- "inputs": [
2348
- {
2349
- "name": "x",
2350
- "type": "uint240[]"
2351
- }
2352
- ],
2353
- "outputs": [
2354
- {
2355
- "name": "x",
2356
- "type": "uint240[]"
2357
- }
2358
- ]
2359
- },
2360
- {
2361
- "name": "getAndReturnUint248Array",
2362
- "type": "function",
2363
- "stateMutability": "view",
2364
- "inputs": [
2365
- {
2366
- "name": "x",
2367
- "type": "uint248[]"
2368
- }
2369
- ],
2370
- "outputs": [
2371
- {
2372
- "name": "x",
2373
- "type": "uint248[]"
2374
- }
2375
- ]
2376
- },
2377
- {
2378
- "name": "getAndReturnUint256Array",
2379
- "type": "function",
2380
- "stateMutability": "view",
2381
- "inputs": [
2382
- {
2383
- "name": "x",
2384
- "type": "uint256[]"
2385
- }
2386
- ],
2387
- "outputs": [
2388
- {
2389
- "name": "x",
2390
- "type": "uint256[]"
2391
- }
2392
- ]
2393
- }
2394
- ]