forked from subsquid-labs/giant-squid-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
7526 lines (7526 loc) · 302 KB
/
package-lock.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
{
"name": "kusama-transfers",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "kusama-transfers",
"dependencies": {
"@belopash/squid-tools": "^0.4.0",
"@subsquid/archive-registry": "3.3.0",
"@subsquid/graphql-server": "4.3.0",
"@subsquid/ss58": "2.0.1",
"@subsquid/substrate-processor": "^7.0.0",
"@subsquid/typeorm-migration": "1.2.1",
"@subsquid/typeorm-store": "1.2.2",
"dotenv": "^16.0.0",
"pg": "8.11.3",
"typeorm": "0.3.16"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "3.1.1",
"@subsquid/substrate-typegen": "8.0.1",
"@subsquid/typeorm-codegen": "1.3.1",
"@types/node": "18.18.6",
"generate-template-files": "^3.2.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@apollo/protobufjs": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.7.tgz",
"integrity": "sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==",
"hasInstallScript": true,
"dependencies": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/long": "^4.0.0",
"long": "^4.0.0"
},
"bin": {
"apollo-pbjs": "bin/pbjs",
"apollo-pbts": "bin/pbts"
}
},
"node_modules/@apollo/usage-reporting-protobuf": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.1.1.tgz",
"integrity": "sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==",
"dependencies": {
"@apollo/protobufjs": "1.2.7"
}
},
"node_modules/@apollo/utils.dropunuseddefinitions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-1.1.0.tgz",
"integrity": "sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.keyvadapter": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@apollo/utils.keyvadapter/-/utils.keyvadapter-1.1.2.tgz",
"integrity": "sha512-vPC5e97uwHuZ2iMHVrEeRsV4dLw0lNx2UY9APhb7StC/RMR3BdnuPwS/+5yR9tUF5IUut+iJZocHkS4y6mR9aA==",
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1",
"dataloader": "^2.1.0",
"keyv": "^4.4.0"
}
},
"node_modules/@apollo/utils.keyvaluecache": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.2.tgz",
"integrity": "sha512-p7PVdLPMnPzmXSQVEsy27cYEjVON+SH/Wb7COyW3rQN8+wJgT1nv9jZouYtztWW8ZgTkii5T6tC9qfoDREd4mg==",
"dependencies": {
"@apollo/utils.logger": "^1.0.0",
"lru-cache": "7.10.1 - 7.13.1"
}
},
"node_modules/@apollo/utils.logger": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-1.0.1.tgz",
"integrity": "sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA=="
},
"node_modules/@apollo/utils.printwithreducedwhitespace": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-1.1.0.tgz",
"integrity": "sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.removealiases": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-1.0.0.tgz",
"integrity": "sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.sortast": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-1.1.0.tgz",
"integrity": "sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==",
"dependencies": {
"lodash.sortby": "^4.7.0"
},
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.stripsensitiveliterals": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-1.2.0.tgz",
"integrity": "sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.usagereporting": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.1.tgz",
"integrity": "sha512-6dk+0hZlnDbahDBB2mP/PZ5ybrtCJdLMbeNJD+TJpKyZmSY6bA3SjI8Cr2EM9QA+AdziywuWg+SgbWUF3/zQqQ==",
"dependencies": {
"@apollo/usage-reporting-protobuf": "^4.0.0",
"@apollo/utils.dropunuseddefinitions": "^1.1.0",
"@apollo/utils.printwithreducedwhitespace": "^1.1.0",
"@apollo/utils.removealiases": "1.0.0",
"@apollo/utils.sortast": "^1.1.0",
"@apollo/utils.stripsensitiveliterals": "^1.2.0"
},
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollographql/apollo-tools": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz",
"integrity": "sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==",
"engines": {
"node": ">=8",
"npm": ">=6"
},
"peerDependencies": {
"graphql": "^14.2.1 || ^15.0.0 || ^16.0.0"
}
},
"node_modules/@apollographql/graphql-playground-html": {
"version": "1.6.29",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz",
"integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==",
"dependencies": {
"xss": "^1.0.8"
}
},
"node_modules/@babel/runtime": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz",
"integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@belopash/squid-tools": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@belopash/squid-tools/-/squid-tools-0.4.0.tgz",
"integrity": "sha512-BWcjEYspnRgcV9TunkRwTZwWXctIUqJ1q6BqHL9jIV5CJYTWp8Hu8s2/9reeLz+TCwtxgccKge95QftV5ikfdw==",
"dependencies": {
"@subsquid/util-internal": "^2.3.0",
"copy-anything": "^3.0.5",
"graph-data-structure": "^3.3.0"
},
"peerDependencies": {
"@subsquid/typeorm-store": "^1.2.1",
"typeorm": "^0.3.16"
}
},
"node_modules/@exodus/schemasafe": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz",
"integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==",
"dev": true
},
"node_modules/@graphql-tools/merge": {
"version": "8.4.2",
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz",
"integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==",
"dependencies": {
"@graphql-tools/utils": "^9.2.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/merge/node_modules/@graphql-tools/utils": {
"version": "9.2.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz",
"integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==",
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock": {
"version": "8.7.20",
"resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.20.tgz",
"integrity": "sha512-ljcHSJWjC/ZyzpXd5cfNhPI7YljRVvabKHPzKjEs5ElxWu2cdlLGvyNYepApXDsM/OJG/2xuhGM+9GWu5gEAPQ==",
"dependencies": {
"@graphql-tools/schema": "^9.0.18",
"@graphql-tools/utils": "^9.2.1",
"fast-json-stable-stringify": "^2.1.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock/node_modules/@graphql-tools/schema": {
"version": "9.0.19",
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz",
"integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==",
"dependencies": {
"@graphql-tools/merge": "^8.4.1",
"@graphql-tools/utils": "^9.2.1",
"tslib": "^2.4.0",
"value-or-promise": "^1.0.12"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock/node_modules/@graphql-tools/utils": {
"version": "9.2.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz",
"integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==",
"dependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock/node_modules/value-or-promise": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz",
"integrity": "sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==",
"engines": {
"node": ">=12"
}
},
"node_modules/@graphql-tools/schema": {
"version": "8.5.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz",
"integrity": "sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==",
"dependencies": {
"@graphql-tools/merge": "8.3.1",
"@graphql-tools/utils": "8.9.0",
"tslib": "^2.4.0",
"value-or-promise": "1.0.11"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/schema/node_modules/@graphql-tools/merge": {
"version": "8.3.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz",
"integrity": "sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==",
"dependencies": {
"@graphql-tools/utils": "8.9.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": {
"version": "8.9.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz",
"integrity": "sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==",
"dependencies": {
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/utils": {
"version": "8.13.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.13.1.tgz",
"integrity": "sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==",
"dependencies": {
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-typed-document-node/core": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz",
"integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==",
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@ioredis/commands": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz",
"integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="
},
"node_modules/@josephg/resolvable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz",
"integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg=="
},
"node_modules/@keyv/redis": {
"version": "2.5.8",
"resolved": "https://registry.npmjs.org/@keyv/redis/-/redis-2.5.8.tgz",
"integrity": "sha512-WweuUZqZN2ETcseV6r1AEum1qG6eR5poNhkZ4CIpWBOjMasT2ArTKWyIPxxYllKUS2A8wKv1l8+AqH6Jpzk7Ug==",
"dependencies": {
"ioredis": "^5.3.2"
},
"engines": {
"node": ">= 12"
}
},
"node_modules/@protobufjs/aspromise": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ=="
},
"node_modules/@protobufjs/base64": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
},
"node_modules/@protobufjs/codegen": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
},
"node_modules/@protobufjs/eventemitter": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q=="
},
"node_modules/@protobufjs/fetch": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
"integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
"dependencies": {
"@protobufjs/aspromise": "^1.1.1",
"@protobufjs/inquire": "^1.1.0"
}
},
"node_modules/@protobufjs/float": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ=="
},
"node_modules/@protobufjs/inquire": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
"integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q=="
},
"node_modules/@protobufjs/path": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA=="
},
"node_modules/@protobufjs/pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw=="
},
"node_modules/@protobufjs/utf8": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
"integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="
},
"node_modules/@sqltools/formatter": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.5.tgz",
"integrity": "sha512-Uy0+khmZqUrUGm5dmMqVlnvufZRSK0FbYzVgp0UMstm+F5+W2/jnEEQyc9vo1ZR/E5ZI/B1WjjoTqBqwJL6Krw=="
},
"node_modules/@subsquid/archive-registry": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/archive-registry/-/archive-registry-3.3.0.tgz",
"integrity": "sha512-moXnGNOSmKMHyuDvUiOHbpL7IePSo4XZOW9OnzESIND64eGxlKusIsCi8Nth1DgzbE/UTTFeNJvYKu0v7SOIqw==",
"dependencies": {
"@subsquid/util-internal": "^1.0.0",
"commander": "^10.0.0",
"easy-table": "^1.2.0",
"sync-fetch": "^0.5.2"
},
"bin": {
"squid-archive-registry": "bin/run.js"
}
},
"node_modules/@subsquid/archive-registry/node_modules/@subsquid/util-internal": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal/-/util-internal-1.1.0.tgz",
"integrity": "sha512-O6m666RDcWEw4vb3bmeNZKlAa1rGOHQvS0nhZFTBXnxZpqK/pU5N0jrQ7X/3is0pY2RKxFoxTurZjhv4QdxtqA=="
},
"node_modules/@subsquid/graphiql-console": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/graphiql-console/-/graphiql-console-0.3.0.tgz",
"integrity": "sha512-C89mus6IXnNi0xMQrZqUFBZwLj8tbuq9lye8Gq/lHmmERAUpi6UsWEyLdJLx2mneZzF3JtY8eNiiZ16jmjtvfw=="
},
"node_modules/@subsquid/graphql-server": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/graphql-server/-/graphql-server-4.3.0.tgz",
"integrity": "sha512-Ws2uHJyhgNgo3uJZQ4XYKAPvnOGJ3wXq/XhcX/b3z2OeiCv89daB+V6Lzf6nBsVBg9D2Ev0vNWIVRKJQbEn+mA==",
"dependencies": {
"@apollo/utils.keyvadapter": "~1.1.2",
"@apollo/utils.keyvaluecache": "~1.0.2",
"@graphql-tools/merge": "^8",
"@graphql-tools/schema": "^8",
"@graphql-tools/utils": "^8",
"@keyv/redis": "~2.5.8",
"@subsquid/logger": "^1.3.0",
"@subsquid/openreader": "^4.4.0",
"@subsquid/typeorm-config": "^3.3.0",
"@subsquid/util-internal": "^2.5.0",
"@subsquid/util-internal-commander": "^1.3.0",
"@subsquid/util-internal-http-server": "^1.2.0",
"apollo-server-core": "^3.12.0",
"apollo-server-express": "^3.12.0",
"apollo-server-plugin-response-cache": "~3.7.1",
"commander": "^11.0.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"graphql": "^15.8.0",
"graphql-ws": "^5.13.1",
"keyv": "~4.5.2",
"pg": "^8.11.0",
"ws": "^8.13.0"
},
"bin": {
"squid-graphql-server": "bin/run.js"
},
"peerDependencies": {
"@subsquid/big-decimal": "^1.0.0",
"class-validator": "^0.14.0",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "^0.3.16"
},
"peerDependenciesMeta": {
"@subsquid/big-decimal": {
"optional": true
},
"class-validator": {
"optional": true
},
"type-graphql": {
"optional": true
},
"typeorm": {
"optional": true
}
}
},
"node_modules/@subsquid/graphql-server/node_modules/@subsquid/util-internal-commander": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-commander/-/util-internal-commander-1.3.0.tgz",
"integrity": "sha512-ZSPzYjNZ/k/6qDa7xdrCgXkq/whYnVPLF8nX+35aAgrM+ShX7XUg/Dq6u0rW3u3sfWcKzsNFHbFB8SzjWN5StA==",
"peerDependencies": {
"commander": "^11.0.0"
}
},
"node_modules/@subsquid/graphql-server/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/http-client": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/http-client/-/http-client-1.3.1.tgz",
"integrity": "sha512-ZBuYNW9IOvigvpntZvM0tzAY5Llr44NYswOzGwJpCjOnWF7EotzeJRMwDH0Zv5hXSMFvX3UBACP+PxmwDvma5A==",
"dependencies": {
"@subsquid/logger": "^1.3.1",
"@subsquid/util-internal": "^2.5.2",
"node-fetch": "^3.3.2"
}
},
"node_modules/@subsquid/logger": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/logger/-/logger-1.3.1.tgz",
"integrity": "sha512-OBhelb0HbhqSygq/IxEm9PPX8thQSDiCPV45UlCqWOoQ9UpiROiQLL+2nwt+HAHQq+LlHTzQmGXV43eabrTfwQ==",
"dependencies": {
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-internal-json": "^1.2.1",
"supports-color": "^8.1.1"
}
},
"node_modules/@subsquid/openreader": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@subsquid/openreader/-/openreader-4.4.0.tgz",
"integrity": "sha512-MiHu+PQH4frnF8RPd4F1WwdPzaaA3trBM1VuzN5cTEPPt8vBF4A1BIL78Qq1HH/HH+yLriNjmA7/IVaAFjsfgw==",
"dependencies": {
"@graphql-tools/merge": "^8",
"@subsquid/graphiql-console": "^0.3.0",
"@subsquid/logger": "^1.3.0",
"@subsquid/util-internal": "^2.5.0",
"@subsquid/util-internal-commander": "^1.3.0",
"@subsquid/util-internal-hex": "^1.2.0",
"@subsquid/util-internal-http-server": "^1.2.0",
"@subsquid/util-naming": "^1.2.0",
"apollo-server-core": "^3.12.0",
"apollo-server-express": "^3.12.0",
"commander": "^11.0.0",
"deep-equal": "^2.2.1",
"express": "^4.18.2",
"graphql": "^15.8.0",
"graphql-parse-resolve-info": "^4.13.0",
"graphql-ws": "^5.13.1",
"pg": "^8.11.0",
"ws": "^8.13.0"
},
"bin": {
"openreader": "bin/main.js"
},
"peerDependencies": {
"@subsquid/big-decimal": "^1.0.0"
},
"peerDependenciesMeta": {
"@subsquid/big-decimal": {
"optional": true
}
}
},
"node_modules/@subsquid/openreader/node_modules/@subsquid/util-internal-commander": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-commander/-/util-internal-commander-1.3.0.tgz",
"integrity": "sha512-ZSPzYjNZ/k/6qDa7xdrCgXkq/whYnVPLF8nX+35aAgrM+ShX7XUg/Dq6u0rW3u3sfWcKzsNFHbFB8SzjWN5StA==",
"peerDependencies": {
"commander": "^11.0.0"
}
},
"node_modules/@subsquid/openreader/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/rpc-client": {
"version": "4.4.2",
"resolved": "https://registry.npmjs.org/@subsquid/rpc-client/-/rpc-client-4.4.2.tgz",
"integrity": "sha512-Zo/KuFNiwKblKCUDpXUNbeshxEpCX44CtBKbzr4f5zFNdwxuH7FjwFnZk4X5YZUVnbcTF6cmqhH5RwRkKBgPfQ==",
"dependencies": {
"@subsquid/http-client": "^1.3.1",
"@subsquid/logger": "^1.3.1",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-binary-heap": "^1.0.0",
"@subsquid/util-internal-counters": "^1.3.1",
"websocket": "^1.0.34"
}
},
"node_modules/@subsquid/scale-codec": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/scale-codec/-/scale-codec-4.0.0.tgz",
"integrity": "sha512-aVqcy1KeQiYhL3lRLZJcRVuBOmh88zQKqEdxU/7gJCj/gvBF9+Isd16oE0xuA5xwlGcFHbRfUFSON5EP2Lv8Eg==",
"dependencies": {
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-internal-json": "^1.2.1"
}
},
"node_modules/@subsquid/scale-type-system": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/scale-type-system/-/scale-type-system-1.0.0.tgz",
"integrity": "sha512-I5qm/rpI+ovqozifnb5cbzoJI8pVQw6C78AcS+GBVup7vyHHNvh8PzJX/L13dQW1f/XxB6/Hj2nBRc29iyU/KA==",
"peer": true,
"dependencies": {
"@subsquid/util-internal": "^2.5.2"
},
"peerDependencies": {
"@subsquid/scale-codec": "^4.0.0"
}
},
"node_modules/@subsquid/ss58": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/ss58/-/ss58-2.0.1.tgz",
"integrity": "sha512-VmVgR6E8cwpYiQtL+ZbdW0RCguNmwunbX4JYI08vHErxWdLhX4o6v9LClq3L9+5LcKgspzOci9DNt0xzR1keYQ==",
"dependencies": {
"@subsquid/ss58-codec": "^1.2.2",
"@subsquid/util-internal-hex": "^1.2.1"
}
},
"node_modules/@subsquid/ss58-codec": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@subsquid/ss58-codec/-/ss58-codec-1.2.2.tgz",
"integrity": "sha512-hNYKWqfKd92l2xFSgSiSfK6dHLE/hwWWJ6FIlZ3mS/tgUsEUqTHJabqZ1p+pt0US9P8h+J4Dd58eujPI03peqA==",
"dependencies": {
"base-x": "^4.0.0",
"blake2b": "^2.1.4"
}
},
"node_modules/@subsquid/substrate-data": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-data/-/substrate-data-3.0.0.tgz",
"integrity": "sha512-0zRT4ya4Nbt2T4+JkqZClItFdyPNIrfWh880s82/+elhGbq7NxZdHPhskG/F4RHWLlcM1JUvVqIVRX9Fv1TgKw==",
"dependencies": {
"@subsquid/scale-codec": "^4.0.0",
"@subsquid/substrate-data-raw": "^0.0.3",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-internal-ingest-tools": "^0.0.2",
"@subsquid/util-internal-range": "^0.0.1",
"@subsquid/util-xxhash": "^1.2.1",
"@substrate/calc": "^0.2.8",
"blake2b": "^2.1.4"
},
"peerDependencies": {
"@subsquid/rpc-client": "^4.4.2",
"@subsquid/substrate-runtime": "^1.0.0"
}
},
"node_modules/@subsquid/substrate-data-raw": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-data-raw/-/substrate-data-raw-0.0.3.tgz",
"integrity": "sha512-Ibxu3k1qCLUp+LJHuEPFCtq7nTGNLMdkVkDV/J0Jbex/rDmClXGYUrwTrili5tPaLIiiEYDLa1+fxUIhm30meQ==",
"dependencies": {
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-ingest-tools": "^0.0.2",
"@subsquid/util-internal-range": "^0.0.1"
},
"peerDependencies": {
"@subsquid/rpc-client": "^4.4.2"
}
},
"node_modules/@subsquid/substrate-metadata-explorer": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-metadata-explorer/-/substrate-metadata-explorer-3.1.1.tgz",
"integrity": "sha512-GzlgUMEIcJvtiEYXxPqC6onncbmPKoBdINuyQSNmU7hVVOn5MEJhXAj2kzOnTztCGhM8GnBDebmLf/f7RndgiQ==",
"dev": true,
"dependencies": {
"@subsquid/logger": "^1.3.1",
"@subsquid/rpc-client": "^4.4.2",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-commander": "^1.3.1",
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-internal-read-lines": "^1.2.1",
"commander": "^11.0.0"
},
"bin": {
"squid-substrate-metadata-explorer": "bin/run.js",
"substrate-metadata-explorer": "bin/run.js"
}
},
"node_modules/@subsquid/substrate-metadata-explorer/node_modules/@subsquid/util-internal-commander": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-commander/-/util-internal-commander-1.3.1.tgz",
"integrity": "sha512-KeGsOghBU20tM1BzqryOf3MKvrDFSfPuhnl9LhhEC00ysp8rRPyejlw6jIJhO2NRJ+oaUi5jHRdf64/o21N7Lw==",
"dev": true,
"peerDependencies": {
"commander": "^11.0.0"
}
},
"node_modules/@subsquid/substrate-metadata-explorer/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"dev": true,
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/substrate-processor": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-processor/-/substrate-processor-7.2.0.tgz",
"integrity": "sha512-GyVEgDjk3tYq40zWLUzu6aeu5dQiax8Zzhri9/VUy+iTuCnTFVro/BEMdySrdlK3O7C2ZB9/TROQg3n3LW4PKg==",
"dependencies": {
"@subsquid/http-client": "^1.3.1",
"@subsquid/logger": "^1.3.1",
"@subsquid/rpc-client": "^4.4.2",
"@subsquid/substrate-data": "^3.0.0",
"@subsquid/substrate-data-raw": "^0.0.3",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-archive-client": "^0.0.1",
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-internal-json": "^1.2.1",
"@subsquid/util-internal-processor-tools": "^3.1.0"
},
"peerDependencies": {
"@subsquid/substrate-runtime": "^1.0.0"
}
},
"node_modules/@subsquid/substrate-runtime": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-runtime/-/substrate-runtime-1.0.0.tgz",
"integrity": "sha512-IKytJNG5v+ZfDFeETHFULhlWZgBJl70dtZRaSmJJJE0x7USiuEOMMB+EguveNgyWiI2DuX+9Scx04DO1mfpRfg==",
"peer": true,
"dependencies": {
"@subsquid/scale-codec": "^4.0.0",
"@subsquid/scale-type-system": "^1.0.0",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-hex": "^1.2.1",
"@subsquid/util-naming": "^1.2.1",
"@subsquid/util-xxhash": "^1.2.1",
"blake2b": "^2.1.4"
}
},
"node_modules/@subsquid/substrate-typegen": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-typegen/-/substrate-typegen-8.0.1.tgz",
"integrity": "sha512-/Mx6ITDbVVjgPuhW3/JUvEDzN01hrz0lSmjTzX46L2JGamPeCxZfX/HdbwDUb0Ns7zn+Q3e1JOtQoRkC6MVEhA==",
"dev": true,
"dependencies": {
"@subsquid/http-client": "^1.3.1",
"@subsquid/logger": "^1.3.1",
"@subsquid/substrate-metadata-explorer": "^3.1.1",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-code-printer": "^1.2.1",
"@subsquid/util-internal-config": "^2.2.1",
"@subsquid/util-internal-read-lines": "^1.2.1",
"@subsquid/util-naming": "^1.2.1",
"commander": "^11.0.0"
},
"bin": {
"squid-substrate-typegen": "bin/run.js"
},
"peerDependencies": {
"@subsquid/substrate-runtime": "^1.0.0"
}
},
"node_modules/@subsquid/substrate-typegen/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"dev": true,
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/typeorm-codegen": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-codegen/-/typeorm-codegen-1.3.1.tgz",
"integrity": "sha512-hHMbJvYZ9wJFnsK+NgOAC9jv1bawsss1eCrUBI3NMoCJ9xeEZOdx13eQAI+8OAPXedqCx4v0PLFZZOlAKc1/7w==",
"dev": true,
"dependencies": {
"@subsquid/openreader": "^4.3.1",
"@subsquid/util-internal": "^2.4.0",
"@subsquid/util-internal-code-printer": "^1.2.0",
"@subsquid/util-naming": "^1.2.0",
"commander": "^11.0.0"
},
"bin": {
"squid-typeorm-codegen": "bin/run.js"
}
},
"node_modules/@subsquid/typeorm-codegen/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"dev": true,
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/typeorm-config": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-config/-/typeorm-config-3.3.0.tgz",
"integrity": "sha512-DJXoAQnVooEdEU3vxL33I5WRJRRPy9t+15rP17kGMkXGLuPAc0hpelJGSO5Ze9csn/IytwrZUWG6y2I2Q81nyQ==",
"dependencies": {
"@subsquid/util-naming": "^1.2.0"
},
"peerDependencies": {
"typeorm": "^0.3.16"
},
"peerDependenciesMeta": {
"typeorm": {
"optional": true
}
}
},
"node_modules/@subsquid/typeorm-migration": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-migration/-/typeorm-migration-1.2.1.tgz",
"integrity": "sha512-aMo4hmqzwmFHLrdu1PXm3bGiRSodyjgmnETmnYiI11g+FbVWwTuJ3P1jBY9hrRFEr6iGb2+pYVRMme75XoNzTw==",
"dependencies": {
"@subsquid/typeorm-config": "^3.2.0",
"@subsquid/util-internal": "^2.4.0",
"@subsquid/util-internal-code-printer": "^1.2.0",
"commander": "^11.0.0",
"dotenv": "^16.1.4"
},
"bin": {
"squid-typeorm-migration": "bin/squid-typeorm-migration",
"squid-typeorm-migration-apply": "bin/squid-typeorm-migration-apply",
"squid-typeorm-migration-create": "bin/squid-typeorm-migration-create",
"squid-typeorm-migration-generate": "bin/squid-typeorm-migration-generate",
"squid-typeorm-migration-revert": "bin/squid-typeorm-migration-revert"
},
"peerDependencies": {
"typeorm": "^0.3.16"
}
},
"node_modules/@subsquid/typeorm-migration/node_modules/commander": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-11.0.0.tgz",
"integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==",
"engines": {
"node": ">=16"
}
},
"node_modules/@subsquid/typeorm-store": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-store/-/typeorm-store-1.2.2.tgz",
"integrity": "sha512-pp2PvmK51KzpWlGQxDzqoxNnAr5vcMYlA0NLRUM3xHnqlkxwgIrJLRqwmAOYlOiQp0YHqqdFbjtraJXjftCiHA==",
"dependencies": {
"@subsquid/typeorm-config": "^3.3.0",
"@subsquid/util-internal": "^2.5.0"
},
"peerDependencies": {
"typeorm": "^0.3.16"
}
},
"node_modules/@subsquid/util-internal": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal/-/util-internal-2.5.2.tgz",
"integrity": "sha512-N7lfZdWEkM35jG5wdGYx25TJKGGLMOx9VInSeRhW9T/3BEmHAuSWI2mIIYnZ8w5L041V8HGo61ijWF6qsXvZjg=="
},
"node_modules/@subsquid/util-internal-archive-client": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-archive-client/-/util-internal-archive-client-0.0.1.tgz",
"integrity": "sha512-Sr+m1vxAArPIdsjyKVOpjU57JlVujBpI8NEeHqeA6twSb40wasOLAeq775WyYFynucltNRSgIiwXBIo0t02D6g==",
"dependencies": {
"@subsquid/http-client": "^1.3.1",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-range": "^0.0.1"
},
"peerDependencies": {
"@subsquid/logger": "^1.3.1"
},
"peerDependenciesMeta": {
"@subsquid/logger": {
"optional": true
}
}
},
"node_modules/@subsquid/util-internal-binary-heap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-binary-heap/-/util-internal-binary-heap-1.0.0.tgz",
"integrity": "sha512-88auuc8yNFmCZugmJSTYzS7WM/nN2obKGQCgrl8Jty5rJUFbqazGSi8icqftKhv6MPtUMJ3PSTRLiTFXAUGnAA=="
},
"node_modules/@subsquid/util-internal-code-printer": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-code-printer/-/util-internal-code-printer-1.2.1.tgz",
"integrity": "sha512-9l0kCm50hQfRjzplIZs9kHooqxczG82fzAexlD6x1SjdLDU1NfYA0uGxgE6pweKydgd7LCb9ICc5gfDvbWtdaw=="
},
"node_modules/@subsquid/util-internal-config": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-config/-/util-internal-config-2.2.1.tgz",
"integrity": "sha512-yOyIzn5Gx4aawtOEkY/Bxvo57WBqU/vRvpG/nsyFWOEEC/opmxH5Tl3hDPdoeF+/+AN6a9AEprGAMK2Wesj8LQ==",
"dev": true,
"dependencies": {
"@exodus/schemasafe": "^1.3.0",
"jsonc-parser": "^3.2.0"
}
},
"node_modules/@subsquid/util-internal-counters": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-counters/-/util-internal-counters-1.3.1.tgz",
"integrity": "sha512-bc22t8lEvoCBn31F+B763E81+ZDaL7ufpwr0VLXZzcA5wZ6NEqqRfs4bJtPeBNGEjyeLLrItXWxfjSkR7sGKAg=="
},
"node_modules/@subsquid/util-internal-hex": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-hex/-/util-internal-hex-1.2.1.tgz",
"integrity": "sha512-R7TYDsftjguapzWia97WGvcF4s65VKArzSga5i1i4aZSq9Z330kPYpgAUkqDGsJqD/Ki3PTE4cXhuKLRyMHPvg=="
},
"node_modules/@subsquid/util-internal-http-server": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-http-server/-/util-internal-http-server-1.2.1.tgz",
"integrity": "sha512-aQIodM3xWDu8wxllOONU5Fy6hmYYAZzS2PglC2FfdUi6HUxaZ8aCUkjFisG56tglhsoAh/TQSQX1YhCX00MCcg==",
"dependencies": {
"stoppable": "^1.1.0"
}
},
"node_modules/@subsquid/util-internal-ingest-tools": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-ingest-tools/-/util-internal-ingest-tools-0.0.2.tgz",
"integrity": "sha512-Nx5LDWq9B1sVAXg6qDI0zVmzfwP1Mk5Rrn79OJc4eKLvZTrTIk2vyM5SB4n1kwQk6KRuQYI9dfiNWdcm+9rGfA==",
"dependencies": {
"@subsquid/logger": "^1.3.1",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-range": "^0.0.1"
}
},
"node_modules/@subsquid/util-internal-json": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-json/-/util-internal-json-1.2.1.tgz",
"integrity": "sha512-Jtbhur/QaRk727fiZ/w8so0M0o4BIkfvnT6zBnC3s1mQ9fKve0Q6aj22gbimpX7Whj6tAGF0Bz8LFhbAethbkA==",
"dependencies": {
"@subsquid/util-internal-hex": "^1.2.1"
}
},
"node_modules/@subsquid/util-internal-processor-tools": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-processor-tools/-/util-internal-processor-tools-3.1.0.tgz",
"integrity": "sha512-uEa8Bw/xvSfiagbK8IFt1OEgR7hacfblPZXH5EV4cAIKoIVOonhnkJEPRWqI3ZaDHl+8Z9p909tlsEd46sXenw==",
"dependencies": {
"@subsquid/logger": "^1.3.1",
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-counters": "^1.3.1",
"@subsquid/util-internal-prometheus-server": "^1.2.1",
"@subsquid/util-internal-range": "^0.0.1",
"prom-client": "^14.2.0"
}
},
"node_modules/@subsquid/util-internal-prometheus-server": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-prometheus-server/-/util-internal-prometheus-server-1.2.1.tgz",
"integrity": "sha512-GhbsEmv0xAkaBaxwZGRavMIO0h68V6LctZIvxsrrPr695bI1mrXKSYDvVvUwLXQ3aDPy9PIQiKdbSjNa60JW6Q==",
"dependencies": {
"@subsquid/util-internal-http-server": "^1.2.1"
},
"peerDependencies": {
"prom-client": "^14.2.0"
}
},
"node_modules/@subsquid/util-internal-range": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-range/-/util-internal-range-0.0.1.tgz",
"integrity": "sha512-9hqlPdTJeR9j9+1L3ymOPC0/qJ2IemGkrHmkTq+gwkjtGKmiXuXw4WLgt0Ps5aeupWKfP7UFy1hDE9DZQFseog==",
"dependencies": {
"@subsquid/util-internal": "^2.5.2",
"@subsquid/util-internal-binary-heap": "^1.0.0"
}
},
"node_modules/@subsquid/util-internal-read-lines": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-read-lines/-/util-internal-read-lines-1.2.1.tgz",
"integrity": "sha512-Fh7lGlIwFr88pJ39UdkDeQ2z8JEDk13OuoHJHTmgLtThI4kvmDSpVgMdIUUh9nrzFrP/rzlDsvjACTw4D/mTHw==",
"dev": true
},
"node_modules/@subsquid/util-naming": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-naming/-/util-naming-1.2.1.tgz",
"integrity": "sha512-l5rvAXG7TxMPeB5kFTTZWisgN0DNe1mVBHT2V2/nxUx4sOfYfneWIN/+02YqJI/GHX9FoOTB6ru7WLfQEMhvhg==",
"dependencies": {
"camelcase": "^6.3.0",
"inflected": "^2.1.0"
}
},
"node_modules/@subsquid/util-xxhash": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-xxhash/-/util-xxhash-1.2.1.tgz",
"integrity": "sha512-wobgbKK0fd+3ufUVjxcx4zaYII9JY7hbIStyO9M9Q5xrdihiWM5APX27sRuoO8X8oSj34v44JpIMxC8Rbpy3xQ==",
"dependencies": {
"xxhash-wasm": "^1.0.2",
"xxhashjs": "^0.2.2"
}
},
"node_modules/@substrate/calc": {
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@substrate/calc/-/calc-0.2.8.tgz",
"integrity": "sha512-1c3mxf35FBeOswduhy0Wil9s4exHahXFo974qa0Ci2AORX8JTxmwhBb10+3Ls9iWoTFwvgOaFr9v1HeRL5tCig=="