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