-
Notifications
You must be signed in to change notification settings - Fork 5
/
yarn.lock
10044 lines (9064 loc) · 353 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@acala-network/api-derive@npm:6.1.3":
version: 6.1.3
resolution: "@acala-network/api-derive@npm:6.1.3"
dependencies:
"@acala-network/types": "npm:6.1.3"
peerDependencies:
"@polkadot/api": ^12
checksum: 10c0/1ea839f26937d37246dd586b5bc076c853fb60d8fd1abec940e26d325a4c4c007b29c4e9bf586b1414aa27ca9314a1681fdcfdb8d94c6bb43190382faab47ce3
languageName: node
linkType: hard
"@acala-network/api@npm:^6.1.3":
version: 6.1.3
resolution: "@acala-network/api@npm:6.1.3"
dependencies:
"@acala-network/api-derive": "npm:6.1.3"
"@acala-network/types": "npm:6.1.3"
peerDependencies:
"@polkadot/api": ^12
checksum: 10c0/fa80bbbf842a216416b4ba2337177363ef8f86f872b48e8083f53b5adb3e57eb2385486a44006f28e7d2338dd9b23f6425d5dafa09116b03f6df9057c69c8a6e
languageName: node
linkType: hard
"@acala-network/chopsticks-core@npm:0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks-core@npm:0.14.2-1"
dependencies:
"@acala-network/chopsticks-executor": "npm:0.14.2-1"
"@polkadot/rpc-provider": "npm:^12.3.1"
"@polkadot/types": "npm:^12.3.1"
"@polkadot/types-codec": "npm:^12.3.1"
"@polkadot/types-known": "npm:^12.3.1"
"@polkadot/util": "npm:^13.0.2"
"@polkadot/util-crypto": "npm:^13.0.2"
comlink: "npm:^4.4.1"
eventemitter3: "npm:^5.0.1"
lodash: "npm:^4.17.21"
lru-cache: "npm:^10.2.0"
pino: "npm:^8.19.0"
pino-pretty: "npm:^11.0.0"
rxjs: "npm:^7.8.1"
zod: "npm:^3.22.4"
checksum: 10c0/497ba828668d584563aff6614f5a757bc7223095f376ee478946a9d0937795147487191eee61dda323942f009160bf3a5e034044c35374331466211b88ceb2d3
languageName: node
linkType: hard
"@acala-network/chopsticks-db@npm:0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks-db@npm:0.14.2-1"
dependencies:
"@acala-network/chopsticks-core": "npm:0.14.2-1"
"@polkadot/util": "npm:^13.0.2"
idb: "npm:^8.0.0"
sqlite3: "npm:^5.1.7"
typeorm: "npm:^0.3.20"
checksum: 10c0/16c8df0ae6815838685b85add1739f521b491d24460a9cd9ea0e2f27c62e4fe90660808cbf97bde58991289913d59e5f14c91f890269a0b69ed894ab4813811a
languageName: node
linkType: hard
"@acala-network/chopsticks-executor@npm:0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks-executor@npm:0.14.2-1"
dependencies:
"@polkadot/util": "npm:^13.0.2"
"@polkadot/wasm-util": "npm:^7.3.2"
checksum: 10c0/f393952f092652dd9a027d0338f0e96cffbe0206b0f4df73b1bdf937aca6f21b9e6871ea5a2774ea5a73a3ad0da19025f367179cab5692a86561c9e287ad64ff
languageName: node
linkType: hard
"@acala-network/chopsticks-testing@npm:^0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks-testing@npm:0.14.2-1"
dependencies:
"@acala-network/chopsticks-utils": "npm:0.14.2-1"
"@polkadot/api": "npm:^12.3.1"
"@polkadot/types": "npm:^12.3.1"
checksum: 10c0/90c1fa51e20c570c5c0b74469a25c85b2668e7bbe7f019ea41191536737ccd4cb37dafe0cfe30d5bff632699bc55ae23d038b148a6985e3de0557c9eef2ae1c6
languageName: node
linkType: hard
"@acala-network/chopsticks-utils@npm:0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks-utils@npm:0.14.2-1"
dependencies:
"@acala-network/chopsticks": "npm:0.14.2-1"
"@polkadot/api": "npm:^12.3.1"
"@polkadot/api-base": "npm:^12.3.1"
"@polkadot/keyring": "npm:^13.0.2"
"@polkadot/types": "npm:^12.3.1"
"@polkadot/util": "npm:^13.0.2"
checksum: 10c0/205ab8ff10c948d390f9202cd2132b49fd5dfceb0a011c3024068c56e92b6ea81d5b63055bf39ac176dd6602f7200ff010a25a603783a8ab4f7b0939e1fa702d
languageName: node
linkType: hard
"@acala-network/chopsticks@npm:0.14.2-1, @acala-network/chopsticks@npm:^0.14.2-1":
version: 0.14.2-1
resolution: "@acala-network/chopsticks@npm:0.14.2-1"
dependencies:
"@acala-network/chopsticks-core": "npm:0.14.2-1"
"@acala-network/chopsticks-db": "npm:0.14.2-1"
"@pnpm/npm-conf": "npm:^2.2.2"
"@polkadot/api": "npm:^12.3.1"
"@polkadot/api-augment": "npm:^12.3.1"
"@polkadot/rpc-provider": "npm:^12.3.1"
"@polkadot/types": "npm:^12.3.1"
"@polkadot/util": "npm:^13.0.2"
"@polkadot/util-crypto": "npm:^13.0.2"
axios: "npm:^1.7.4"
comlink: "npm:^4.4.1"
dotenv: "npm:^16.4.5"
global-agent: "npm:^3.0.0"
js-yaml: "npm:^4.1.0"
jsondiffpatch: "npm:^0.5.0"
lodash: "npm:^4.17.21"
ws: "npm:^8.17.1"
yargs: "npm:^17.7.2"
zod: "npm:^3.22.4"
bin:
chopsticks: ./chopsticks.cjs
checksum: 10c0/45526dce4aea56cf995ac6b2111ea050ef00f21d9f7a9ba8f967e84aad048a74ea068a7f2c70dbeec2d195e78065b01a4c8f7cf70b32c99864cbd10e9bac557c
languageName: node
linkType: hard
"@acala-network/contracts@npm:4.3.4":
version: 4.3.4
resolution: "@acala-network/contracts@npm:4.3.4"
checksum: 10c0/010e637431954c18b2b82016488974765fa1640c9909cb3694d8a4c2de22c91268c9c5b3cc3e09871e15fdf4a2f9e190da9718f85325ae3b2c0ac926bca261f1
languageName: node
linkType: hard
"@acala-network/eth-providers@npm:~2.7.18":
version: 2.7.25
resolution: "@acala-network/eth-providers@npm:2.7.25"
dependencies:
"@acala-network/contracts": "npm:4.3.4"
"@acala-network/eth-transactions": "npm:2.7.25"
bn.js: "npm:~5.2.0"
ethers: "npm:~5.7.0"
graphql: "npm:~16.0.1"
graphql-request: "npm:~3.6.1"
lru-cache: "npm:~7.8.2"
peerDependencies:
"@acala-network/api": 6.1.0
"@polkadot/api": ^10.11.1
checksum: 10c0/57931b84e9eb45421282547ad3d02b9bee9c0612fb05d810816f55335adfa589a86c42c1584ba3df06facbc6c69bd65c9bc4611c0637f97b27cdc405d0e3ccfa
languageName: node
linkType: hard
"@acala-network/eth-transactions@npm:2.7.25":
version: 2.7.25
resolution: "@acala-network/eth-transactions@npm:2.7.25"
dependencies:
ethers: "npm:~5.7.0"
peerDependencies:
"@polkadot/util-crypto": ^12.4.2
checksum: 10c0/a0cab4607ed841f2b028b06c21d1fd9f1904b1eeb45b5251a195f2d466e1f9925c3496748b5a458be9c52b0af949f439b7ed2853822fa32817ac8327a989e21d
languageName: node
linkType: hard
"@acala-network/sdk-core@npm:4.1.11":
version: 4.1.11
resolution: "@acala-network/sdk-core@npm:4.1.11"
dependencies:
"@acala-network/types": "npm:^6.1.1"
"@polkadot/api": "npm:^12.1.1"
bignumber.js: "npm:^9.0.0"
lodash: "npm:^4.17.20"
peerDependencies:
"@acala-network/types": ^6
"@polkadot/api": ^12
checksum: 10c0/3a80582f7a8dcfe40ceb8b81d698c105afdb3020699129053e038a3045468a505b085581cd94abce2d05618701e12871939bc6f625210b9c977c0de6036621c2
languageName: node
linkType: hard
"@acala-network/sdk@npm:4.1.11":
version: 4.1.11
resolution: "@acala-network/sdk@npm:4.1.11"
dependencies:
"@acala-network/api": "npm:^6.1.1"
"@acala-network/eth-providers": "npm:~2.7.18"
"@acala-network/sdk-core": "npm:4.1.11"
"@polkadot/api": "npm:^12.1.1"
axios: "npm:^0.24.0"
ethers: "npm:~5.7.0"
graphql: "npm:^16.3.0"
graphql-request: "npm:^4.1.0"
lodash: "npm:^4.17.20"
lru-cache: "npm:^7.14.1"
rxjs: "npm:^7.8.1"
peerDependencies:
"@acala-network/api": ^5
"@acala-network/eth-providers": ~2.7.18
"@polkadot/api": ^12
ethers: ~5.7.0
checksum: 10c0/a052dfcba3a0d88ab72a389abbc686ec3c2bf751fcdd4c9b9d7f322f4f0115c1e29ecd33eba787c8b137d2a6fad23cbc7258a0f7b21fffb943d63faab95b5cf8
languageName: node
linkType: hard
"@acala-network/type-definitions@npm:5.1.2":
version: 5.1.2
resolution: "@acala-network/type-definitions@npm:5.1.2"
peerDependencies:
"@polkadot/types": ^10.5.1
checksum: 10c0/4fb6fe3bf495827265e728786f746900d770f91a8340956ba884c2087d06f8ca8988f723dd46fb4ad06fda3efbf174b2572f23e14615a9367c575418b879de4c
languageName: node
linkType: hard
"@acala-network/types@npm:6.1.3, @acala-network/types@npm:^6.1.1":
version: 6.1.3
resolution: "@acala-network/types@npm:6.1.3"
peerDependencies:
"@polkadot/api": ^12
checksum: 10c0/04b95200640953c6b102f8c20fb0480f348de4e1ce0da5a39d5d2d644928d390680069cdf0973ea03026d4ecd9070fa3780ea7c350981fd7fe18aa4dff2cf542
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.14.6, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.2, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.20.6":
version: 7.25.6
resolution: "@babel/runtime@npm:7.25.6"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/d6143adf5aa1ce79ed374e33fdfd74fa975055a80bc6e479672ab1eadc4e4bfd7484444e17dd063a1d180e051f3ec62b357c7a2b817e7657687b47313158c3d2
languageName: node
linkType: hard
"@bifrost-finance/type-definitions@npm:1.8.4":
version: 1.8.4
resolution: "@bifrost-finance/type-definitions@npm:1.8.4"
peerDependencies:
"@polkadot/api": ^10.7.3
checksum: 10c0/3c3d71b05f10127e8b4560a882203df153287a4f10d7fc023659ef0ec412bc0704bef436a17b5007ff5026517084102a72d2a1fa9ba1bcb4d73f999f7b1dfff9
languageName: node
linkType: hard
"@crustio/type-definitions@npm:1.3.0":
version: 1.3.0
resolution: "@crustio/type-definitions@npm:1.3.0"
dependencies:
"@open-web3/orml-type-definitions": "npm:^0.9.4-7"
checksum: 10c0/ec1ca3866e3eb23d83579432fd4ee83ac9b81cf24592bcd175d3b00a930edcf6fd22a168408b40e741f6ac1f7346fe3174fdcda62b190342ccf09b97539849a4
languageName: node
linkType: hard
"@darwinia/types-known@npm:2.8.10":
version: 2.8.10
resolution: "@darwinia/types-known@npm:2.8.10"
checksum: 10c0/05f73f537ba8acbc03161d265d2aa0920e6134f02cbc5bb91dd3c38dfde34ff9e4586b1aa5ad3ab5627e36dc4dc0951db6ceb2f84bd476d4d409a1fc29570ee4
languageName: node
linkType: hard
"@darwinia/types@npm:2.8.10":
version: 2.8.10
resolution: "@darwinia/types@npm:2.8.10"
checksum: 10c0/f0d15460060d22e9a697b17fc4cd8e85903bc800e368b849bdd53f53d28157639044d0de9e2b078b637676c7dd0cb10ee1ce8b6351933d4502b50b958d722a09
languageName: node
linkType: hard
"@digitalnative/type-definitions@npm:1.1.27":
version: 1.1.27
resolution: "@digitalnative/type-definitions@npm:1.1.27"
dependencies:
"@polkadot/keyring": "npm:^6.9.1"
"@polkadot/types": "npm:^4.13.1"
checksum: 10c0/7f007e42cbece4d28904602029a41890ec68ed0a64003de10be3fba2ee4e239886efba01292dc98a5b92b51214b03bb1a2cf20537814d18f51f2ad5e09dee731
languageName: node
linkType: hard
"@docknetwork/node-types@npm:0.16.0":
version: 0.16.0
resolution: "@docknetwork/node-types@npm:0.16.0"
checksum: 10c0/4a5e814e944d4a3e78e4b2bbce6382f0f40f8d1b1861c4cb336685c6bf7a2aff7cab1eeee3f0c8a23ddff61cfaa724a9400aa44f2479b0936b54622246529ff3
languageName: node
linkType: hard
"@edgeware/node-types@npm:3.6.2-wako":
version: 3.6.2-wako
resolution: "@edgeware/node-types@npm:3.6.2-wako"
checksum: 10c0/34a6fc22b851ffc2b772e60c4d360f186eae0010aa203d648d6945f110815f9a86d2cb08961a4a93167f33ffeb0729cd62d70927e65b223ef55242364e3f01e0
languageName: node
linkType: hard
"@emotion/is-prop-valid@npm:1.2.2":
version: 1.2.2
resolution: "@emotion/is-prop-valid@npm:1.2.2"
dependencies:
"@emotion/memoize": "npm:^0.8.1"
checksum: 10c0/bb1530dcb4e0e5a4fabb219279f2d0bc35796baf66f6241f98b0d03db1985c890a8cafbea268e0edefd5eeda143dbd5c09a54b5fba74cee8c69b98b13194af50
languageName: node
linkType: hard
"@emotion/memoize@npm:^0.8.1":
version: 0.8.1
resolution: "@emotion/memoize@npm:0.8.1"
checksum: 10c0/dffed372fc3b9fa2ba411e76af22b6bb686fb0cb07694fdfaa6dd2baeb0d5e4968c1a7caa472bfcf06a5997d5e7c7d16b90e993f9a6ffae79a2c3dbdc76dfe78
languageName: node
linkType: hard
"@emotion/unitless@npm:0.8.1":
version: 0.8.1
resolution: "@emotion/unitless@npm:0.8.1"
checksum: 10c0/a1ed508628288f40bfe6dd17d431ed899c067a899fa293a13afe3aed1d70fac0412b8a215fafab0b42829360db687fecd763e5f01a64ddc4a4b58ec3112ff548
languageName: node
linkType: hard
"@equilab/definitions@npm:1.4.18":
version: 1.4.18
resolution: "@equilab/definitions@npm:1.4.18"
checksum: 10c0/d7d60d9553e5708435d9188b2568af7ff1997ccee103dc19fdf30cd418dfc77f42b482c8c06ccf0c56720702a46337a2f0e626be073f1bcfea0771e71fa22d52
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/aix-ppc64@npm:0.21.5"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/aix-ppc64@npm:0.23.1"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm64@npm:0.21.5"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm64@npm:0.23.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-arm@npm:0.21.5"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm@npm:0.23.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/android-x64@npm:0.21.5"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-x64@npm:0.23.1"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-arm64@npm:0.21.5"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-arm64@npm:0.23.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/darwin-x64@npm:0.21.5"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-x64@npm:0.23.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/freebsd-arm64@npm:0.23.1"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/freebsd-x64@npm:0.21.5"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/freebsd-x64@npm:0.23.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm64@npm:0.21.5"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-arm64@npm:0.23.1"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-arm@npm:0.21.5"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-arm@npm:0.23.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ia32@npm:0.21.5"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-ia32@npm:0.23.1"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-loong64@npm:0.21.5"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-loong64@npm:0.23.1"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-mips64el@npm:0.21.5"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-mips64el@npm:0.23.1"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-ppc64@npm:0.21.5"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-ppc64@npm:0.23.1"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-riscv64@npm:0.21.5"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-riscv64@npm:0.23.1"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-s390x@npm:0.21.5"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-s390x@npm:0.23.1"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/linux-x64@npm:0.21.5"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/linux-x64@npm:0.23.1"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/netbsd-x64@npm:0.21.5"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/netbsd-x64@npm:0.23.1"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/openbsd-arm64@npm:0.23.1"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/openbsd-x64@npm:0.21.5"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/openbsd-x64@npm:0.23.1"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/sunos-x64@npm:0.21.5"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/sunos-x64@npm:0.23.1"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-arm64@npm:0.21.5"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-arm64@npm:0.23.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-ia32@npm:0.21.5"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-ia32@npm:0.23.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.21.5":
version: 0.21.5
resolution: "@esbuild/win32-x64@npm:0.21.5"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/win32-x64@npm:0.23.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: "npm:^3.3.0"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/7e559c4ce59cd3a06b1b5a517b593912e680a7f981ae7affab0d01d709e99cd5647019be8fafa38c350305bc32f1f7d42c7073edde2ab536c745e365f37b607e
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1":
version: 4.11.0
resolution: "@eslint-community/regexpp@npm:4.11.0"
checksum: 10c0/0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.0":
version: 8.57.0
resolution: "@eslint/js@npm:8.57.0"
checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94
languageName: node
linkType: hard
"@ethersproject/abi@npm:5.7.0, @ethersproject/abi@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/abi@npm:5.7.0"
dependencies:
"@ethersproject/address": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/constants": "npm:^5.7.0"
"@ethersproject/hash": "npm:^5.7.0"
"@ethersproject/keccak256": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
checksum: 10c0/7de51bf52ff03df2526546dacea6e74f15d4c5ef762d931552082b9600dcefd8e333599f02d7906ba89f7b7f48c45ab72cee76f397212b4f17fa9d9ff5615916
languageName: node
linkType: hard
"@ethersproject/abstract-provider@npm:5.7.0, @ethersproject/abstract-provider@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/abstract-provider@npm:5.7.0"
dependencies:
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/networks": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/transactions": "npm:^5.7.0"
"@ethersproject/web": "npm:^5.7.0"
checksum: 10c0/a5708e2811b90ddc53d9318ce152511a32dd4771aa2fb59dbe9e90468bb75ca6e695d958bf44d13da684dc3b6aab03f63d425ff7591332cb5d7ddaf68dff7224
languageName: node
linkType: hard
"@ethersproject/abstract-signer@npm:5.7.0, @ethersproject/abstract-signer@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/abstract-signer@npm:5.7.0"
dependencies:
"@ethersproject/abstract-provider": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
checksum: 10c0/e174966b3be17269a5974a3ae5eef6d15ac62ee8c300ceace26767f218f6bbf3de66f29d9a9c9ca300fa8551aab4c92e28d2cc772f5475fdeaa78d9b5be0e745
languageName: node
linkType: hard
"@ethersproject/address@npm:5.7.0, @ethersproject/address@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/address@npm:5.7.0"
dependencies:
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/keccak256": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/rlp": "npm:^5.7.0"
checksum: 10c0/db5da50abeaae8f6cf17678323e8d01cad697f9a184b0593c62b71b0faa8d7e5c2ba14da78a998d691773ed6a8eb06701f65757218e0eaaeb134e5c5f3e5a908
languageName: node
linkType: hard
"@ethersproject/base64@npm:5.7.0, @ethersproject/base64@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/base64@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
checksum: 10c0/4f748cd82af60ff1866db699fbf2bf057feff774ea0a30d1f03ea26426f53293ea10cc8265cda1695301da61093bedb8cc0d38887f43ed9dad96b78f19d7337e
languageName: node
linkType: hard
"@ethersproject/basex@npm:5.7.0, @ethersproject/basex@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/basex@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
checksum: 10c0/02304de77477506ad798eb5c68077efd2531624380d770ef4a823e631a288fb680107a0f9dc4a6339b2a0b0f5b06ee77f53429afdad8f950cde0f3e40d30167d
languageName: node
linkType: hard
"@ethersproject/bignumber@npm:5.7.0, @ethersproject/bignumber@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/bignumber@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
bn.js: "npm:^5.2.1"
checksum: 10c0/14263cdc91a7884b141d9300f018f76f69839c47e95718ef7161b11d2c7563163096fee69724c5fa8ef6f536d3e60f1c605819edbc478383a2b98abcde3d37b2
languageName: node
linkType: hard
"@ethersproject/bytes@npm:5.7.0, @ethersproject/bytes@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/bytes@npm:5.7.0"
dependencies:
"@ethersproject/logger": "npm:^5.7.0"
checksum: 10c0/07dd1f0341b3de584ef26c8696674ff2bb032f4e99073856fc9cd7b4c54d1d846cabe149e864be267934658c3ce799e5ea26babe01f83af0e1f06c51e5ac791f
languageName: node
linkType: hard
"@ethersproject/constants@npm:5.7.0, @ethersproject/constants@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/constants@npm:5.7.0"
dependencies:
"@ethersproject/bignumber": "npm:^5.7.0"
checksum: 10c0/6df63ab753e152726b84595250ea722165a5744c046e317df40a6401f38556385a37c84dadf5b11ca651c4fb60f967046125369c57ac84829f6b30e69a096273
languageName: node
linkType: hard
"@ethersproject/contracts@npm:5.7.0":
version: 5.7.0
resolution: "@ethersproject/contracts@npm:5.7.0"
dependencies:
"@ethersproject/abi": "npm:^5.7.0"
"@ethersproject/abstract-provider": "npm:^5.7.0"
"@ethersproject/abstract-signer": "npm:^5.7.0"
"@ethersproject/address": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/constants": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/transactions": "npm:^5.7.0"
checksum: 10c0/97a10361dddaccfb3e9e20e24d071cfa570050adcb964d3452c5f7c9eaaddb4e145ec9cf928e14417948701b89e81d4907800e799a6083123e4d13a576842f41
languageName: node
linkType: hard
"@ethersproject/hash@npm:5.7.0, @ethersproject/hash@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/hash@npm:5.7.0"
dependencies:
"@ethersproject/abstract-signer": "npm:^5.7.0"
"@ethersproject/address": "npm:^5.7.0"
"@ethersproject/base64": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/keccak256": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
checksum: 10c0/1a631dae34c4cf340dde21d6940dd1715fc7ae483d576f7b8ef9e8cb1d0e30bd7e8d30d4a7d8dc531c14164602323af2c3d51eb2204af18b2e15167e70c9a5ef
languageName: node
linkType: hard
"@ethersproject/hdnode@npm:5.7.0, @ethersproject/hdnode@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/hdnode@npm:5.7.0"
dependencies:
"@ethersproject/abstract-signer": "npm:^5.7.0"
"@ethersproject/basex": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/pbkdf2": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/sha2": "npm:^5.7.0"
"@ethersproject/signing-key": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
"@ethersproject/transactions": "npm:^5.7.0"
"@ethersproject/wordlists": "npm:^5.7.0"
checksum: 10c0/36d5c13fe69b1e0a18ea98537bc560d8ba166e012d63faac92522a0b5f405eb67d8848c5aca69e2470f62743aaef2ac36638d9e27fd8c68f51506eb61479d51d
languageName: node
linkType: hard
"@ethersproject/json-wallets@npm:5.7.0, @ethersproject/json-wallets@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/json-wallets@npm:5.7.0"
dependencies:
"@ethersproject/abstract-signer": "npm:^5.7.0"
"@ethersproject/address": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/hdnode": "npm:^5.7.0"
"@ethersproject/keccak256": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/pbkdf2": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/random": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
"@ethersproject/transactions": "npm:^5.7.0"
aes-js: "npm:3.0.0"
scrypt-js: "npm:3.0.1"
checksum: 10c0/f1a84d19ff38d3506f453abc4702107cbc96a43c000efcd273a056371363767a06a8d746f84263b1300266eb0c329fe3b49a9b39a37aadd016433faf9e15a4bb
languageName: node
linkType: hard
"@ethersproject/keccak256@npm:5.7.0, @ethersproject/keccak256@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/keccak256@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
js-sha3: "npm:0.8.0"
checksum: 10c0/3b1a91706ff11f5ab5496840b9c36cedca27db443186d28b94847149fd16baecdc13f6fc5efb8359506392f2aba559d07e7f9c1e17a63f9d5de9f8053cfcb033
languageName: node
linkType: hard
"@ethersproject/logger@npm:5.7.0, @ethersproject/logger@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/logger@npm:5.7.0"
checksum: 10c0/d03d460fb2d4a5e71c627b7986fb9e50e1b59a6f55e8b42a545b8b92398b961e7fd294bd9c3d8f92b35d0f6ff9d15aa14c95eab378f8ea194e943c8ace343501
languageName: node
linkType: hard
"@ethersproject/networks@npm:5.7.1, @ethersproject/networks@npm:^5.7.0":
version: 5.7.1
resolution: "@ethersproject/networks@npm:5.7.1"
dependencies:
"@ethersproject/logger": "npm:^5.7.0"
checksum: 10c0/9efcdce27f150459e85d74af3f72d5c32898823a99f5410e26bf26cca2d21fb14e403377314a93aea248e57fb2964e19cee2c3f7bfc586ceba4c803a8f1b75c0
languageName: node
linkType: hard
"@ethersproject/pbkdf2@npm:5.7.0, @ethersproject/pbkdf2@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/pbkdf2@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/sha2": "npm:^5.7.0"
checksum: 10c0/e5a29cf28b4f4ca1def94d37cfb6a9c05c896106ed64881707813de01c1e7ded613f1e95febcccda4de96aae929068831d72b9d06beef1377b5a1a13a0eb3ff5
languageName: node
linkType: hard
"@ethersproject/properties@npm:5.7.0, @ethersproject/properties@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/properties@npm:5.7.0"
dependencies:
"@ethersproject/logger": "npm:^5.7.0"
checksum: 10c0/4fe5d36e5550b8e23a305aa236a93e8f04d891d8198eecdc8273914c761b0e198fd6f757877406ee3eb05033ec271132a3e5998c7bd7b9a187964fb4f67b1373
languageName: node
linkType: hard
"@ethersproject/providers@npm:5.7.2":
version: 5.7.2
resolution: "@ethersproject/providers@npm:5.7.2"
dependencies:
"@ethersproject/abstract-provider": "npm:^5.7.0"
"@ethersproject/abstract-signer": "npm:^5.7.0"
"@ethersproject/address": "npm:^5.7.0"
"@ethersproject/base64": "npm:^5.7.0"
"@ethersproject/basex": "npm:^5.7.0"
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/constants": "npm:^5.7.0"
"@ethersproject/hash": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/networks": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
"@ethersproject/random": "npm:^5.7.0"
"@ethersproject/rlp": "npm:^5.7.0"
"@ethersproject/sha2": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
"@ethersproject/transactions": "npm:^5.7.0"
"@ethersproject/web": "npm:^5.7.0"
bech32: "npm:1.1.4"
ws: "npm:7.4.6"
checksum: 10c0/4c8d19e6b31f769c24042fb2d02e483a4ee60dcbfca9e3291f0a029b24337c47d1ea719a390be856f8fd02997125819e834415e77da4fb2023369712348dae4c
languageName: node
linkType: hard
"@ethersproject/random@npm:5.7.0, @ethersproject/random@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/random@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
checksum: 10c0/23e572fc55372653c22062f6a153a68c2e2d3200db734cd0d39621fbfd0ca999585bed2d5682e3ac65d87a2893048375682e49d1473d9965631ff56d2808580b
languageName: node
linkType: hard
"@ethersproject/rlp@npm:5.7.0, @ethersproject/rlp@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/rlp@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
checksum: 10c0/bc863d21dcf7adf6a99ae75c41c4a3fb99698cfdcfc6d5d82021530f3d3551c6305bc7b6f0475ad6de6f69e91802b7e872bee48c0596d98969aefcf121c2a044
languageName: node
linkType: hard
"@ethersproject/sha2@npm:5.7.0, @ethersproject/sha2@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/sha2@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
hash.js: "npm:1.1.7"
checksum: 10c0/0e7f9ce6b1640817b921b9c6dd9dab8d5bf5a0ce7634d6a7d129b7366a576c2f90dcf4bcb15a0aa9310dde67028f3a44e4fcc2f26b565abcd2a0f465116ff3b1
languageName: node
linkType: hard
"@ethersproject/signing-key@npm:5.7.0, @ethersproject/signing-key@npm:^5.7.0":
version: 5.7.0
resolution: "@ethersproject/signing-key@npm:5.7.0"
dependencies:
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/properties": "npm:^5.7.0"
bn.js: "npm:^5.2.1"
elliptic: "npm:6.5.4"
hash.js: "npm:1.1.7"
checksum: 10c0/fe2ca55bcdb6e370d81372191d4e04671234a2da872af20b03c34e6e26b97dc07c1ee67e91b673680fb13344c9d5d7eae52f1fa6117733a3d68652b778843e09
languageName: node
linkType: hard
"@ethersproject/solidity@npm:5.7.0":
version: 5.7.0
resolution: "@ethersproject/solidity@npm:5.7.0"
dependencies:
"@ethersproject/bignumber": "npm:^5.7.0"
"@ethersproject/bytes": "npm:^5.7.0"
"@ethersproject/keccak256": "npm:^5.7.0"
"@ethersproject/logger": "npm:^5.7.0"
"@ethersproject/sha2": "npm:^5.7.0"
"@ethersproject/strings": "npm:^5.7.0"
checksum: 10c0/bedf9918911144b0ec352b8aa7fa44abf63f0b131629c625672794ee196ba7d3992b0e0d3741935ca176813da25b9bcbc81aec454652c63113bdc3a1706beac6