forked from ethers-io/ethers.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
5141 lines (4441 loc) · 197 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.16.0":
"integrity" "sha1-DfyAMJvuyEEeZecGRhxAiwu5tDE="
"resolved" "https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.16.0.tgz?cache=0&sync_timestamp=1635560657003&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/highlight" "^7.16.0"
"@babel/compat-data@^7.16.0":
"integrity" "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="
"resolved" "https://registry.npmmirror.com/@babel/compat-data/download/@babel/compat-data-7.16.4.tgz?cache=0&sync_timestamp=1637102917946&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcompat-data%2Fdownload%2F%40babel%2Fcompat-data-7.16.4.tgz"
"version" "7.16.4"
"@babel/core@^7.0.0", "@babel/core@^7.7.5":
"integrity" "sha1-xP9EBG9f4xBSXMnrTvUUfwxTdNQ="
"resolved" "https://registry.npmmirror.com/@babel/core/download/@babel/core-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.0"
"@babel/helper-compilation-targets" "^7.16.0"
"@babel/helper-module-transforms" "^7.16.0"
"@babel/helpers" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.16.0":
"integrity" "sha1-1A89HVB15i01ALzLZ/PaqKlSZbI="
"resolved" "https://registry.npmmirror.com/@babel/generator/download/@babel/generator-7.16.0.tgz?cache=0&sync_timestamp=1635560700747&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.16.0":
"integrity" "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="
"resolved" "https://registry.npmmirror.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.16.3.tgz?cache=0&sync_timestamp=1636494857717&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/compat-data" "^7.16.0"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.17.5"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.16.0":
"integrity" "sha1-t90Hl9ALv+5PB+nE6lsOMMi7FIE="
"resolved" "https://registry.npmmirror.com/@babel/helper-function-name/download/@babel/helper-function-name-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-get-function-arity" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-get-function-arity@^7.16.0":
"integrity" "sha1-AIjHSGspqctdlIsaHeRttm4InPo="
"resolved" "https://registry.npmmirror.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-hoist-variables@^7.16.0":
"integrity" "sha1-TJAjwvHe9+KP9G/B2802o5vqqBo="
"resolved" "https://registry.npmmirror.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-member-expression-to-functions@^7.16.0":
"integrity" "sha1-KShwQO/Rl8d2Nu91GI6B2ovM1aQ="
"resolved" "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-imports@^7.16.0":
"integrity" "sha1-kFOOYLZy7PG0SPX09UM9N+eaPsM="
"resolved" "https://registry.npmmirror.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.16.0.tgz?cache=0&sync_timestamp=1635560941965&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-transforms@^7.16.0":
"integrity" "sha1-HIKo3UyzRXdQLr0pCWmbGUw+m7U="
"resolved" "https://registry.npmmirror.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-module-imports" "^7.16.0"
"@babel/helper-replace-supers" "^7.16.0"
"@babel/helper-simple-access" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/helper-validator-identifier" "^7.15.7"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-optimise-call-expression@^7.16.0":
"integrity" "sha1-zs2xRdcMVAlrFWT46fEM19GTszg="
"resolved" "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-replace-supers@^7.16.0":
"integrity" "sha1-cwVejTz5vLqN21XK2T/tyGD2jxc="
"resolved" "https://registry.npmmirror.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.16.0"
"@babel/helper-optimise-call-expression" "^7.16.0"
"@babel/traverse" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-simple-access@^7.16.0":
"integrity" "sha1-IdaidiDjg+N1NM9sELugGab5BRc="
"resolved" "https://registry.npmmirror.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-split-export-declaration@^7.16.0":
"integrity" "sha1-KWcvQ2Y+k23zcKrrIr7ds7rsdDg="
"resolved" "https://registry.npmmirror.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz?cache=0&sync_timestamp=1631920000984&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha1-bnKh//GNXfy4eOHmLxoCHEty1aM="
"resolved" "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.16.0":
"integrity" "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w=="
"resolved" "https://registry.npmmirror.com/@babel/helpers/download/@babel/helpers-7.16.3.tgz?cache=0&sync_timestamp=1636494884812&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fhelpers%2Fdownload%2F%40babel%2Fhelpers-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.3"
"@babel/types" "^7.16.0"
"@babel/highlight@^7.16.0":
"integrity" "sha1-bOsysspLj182H7f9gh4/3fShclo="
"resolved" "https://registry.npmmirror.com/@babel/highlight/download/@babel/highlight-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.0":
"integrity" "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng=="
"resolved" "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz?cache=0&sync_timestamp=1637102910055&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.16.4.tgz"
"version" "7.16.4"
"@babel/parser@^7.16.3":
"integrity" "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng=="
"resolved" "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz?cache=0&sync_timestamp=1637102910055&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.16.4.tgz"
"version" "7.16.4"
"@babel/[email protected]":
"integrity" "sha1-0dvmRpHWA1ipdClfpT2gdN0s6Og="
"resolved" "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.8.4.tgz?cache=0&sync_timestamp=1637102910055&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.8.4.tgz"
"version" "7.8.4"
"@babel/template@^7.16.0":
"integrity" "sha1-0Wo16/TNdOICCDNW+rId2JNj3dY="
"resolved" "https://registry.npmmirror.com/@babel/template/download/@babel/template-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/traverse@^7.16.0", "@babel/traverse@^7.16.3":
"integrity" "sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag=="
"resolved" "https://registry.npmmirror.com/@babel/traverse/download/@babel/traverse-7.16.3.tgz?cache=0&sync_timestamp=1636494921751&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.0"
"@babel/helper-function-name" "^7.16.0"
"@babel/helper-hoist-variables" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/parser" "^7.16.3"
"@babel/types" "^7.16.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.0":
"integrity" "sha1-2zsxOAT5aq3Qt3bEgj4SetZyibo="
"resolved" "https://registry.npmmirror.com/@babel/types/download/@babel/types-7.16.0.tgz?cache=0&sync_timestamp=1635560939610&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"to-fast-properties" "^2.0.0"
"@babel/[email protected]":
"integrity" "sha1-Wjg9/6VBbbG3Pe3/0xH/0HiPsxw="
"resolved" "https://registry.npmmirror.com/@babel/types/download/@babel/types-7.8.3.tgz?cache=0&sync_timestamp=1635560939610&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"esutils" "^2.0.2"
"lodash" "^4.17.13"
"to-fast-properties" "^2.0.0"
"@ethersproject/abi@^5.1.2":
"integrity" "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA=="
"resolved" "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/address" "^5.7.0"
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/constants" "^5.7.0"
"@ethersproject/hash" "^5.7.0"
"@ethersproject/keccak256" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
"@ethersproject/abstract-provider@^5.7.0":
"integrity" "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw=="
"resolved" "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/networks" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/transactions" "^5.7.0"
"@ethersproject/web" "^5.7.0"
"@ethersproject/abstract-signer@^5.7.0":
"integrity" "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/abstract-provider" "^5.7.0"
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/address@^5.7.0":
"integrity" "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA=="
"resolved" "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/keccak256" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/rlp" "^5.7.0"
"@ethersproject/base64@^5.7.0":
"integrity" "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/bignumber@^5.7.0":
"integrity" "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw=="
"resolved" "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"bn.js" "^5.2.1"
"@ethersproject/bytes@^5.7.0":
"integrity" "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A=="
"resolved" "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/logger" "^5.7.0"
"@ethersproject/constants@^5.7.0":
"integrity" "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA=="
"resolved" "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/hash@^5.7.0":
"integrity" "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g=="
"resolved" "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/abstract-signer" "^5.7.0"
"@ethersproject/address" "^5.7.0"
"@ethersproject/base64" "^5.7.0"
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/keccak256" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
"@ethersproject/keccak256@^5.7.0":
"integrity" "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg=="
"resolved" "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"js-sha3" "0.8.0"
"@ethersproject/logger@^5.7.0":
"integrity" "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig=="
"resolved" "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz"
"version" "5.7.0"
"@ethersproject/networks@^5.7.0":
"integrity" "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties@^5.7.0":
"integrity" "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw=="
"resolved" "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/logger" "^5.7.0"
"@ethersproject/rlp@^5.7.0":
"integrity" "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w=="
"resolved" "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/signing-key@^5.7.0":
"integrity" "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q=="
"resolved" "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"bn.js" "^5.2.1"
"elliptic" "6.5.4"
"hash.js" "1.1.7"
"@ethersproject/strings@^5.7.0":
"integrity" "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg=="
"resolved" "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/constants" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/transactions@^5.7.0":
"integrity" "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ=="
"resolved" "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz"
"version" "5.7.0"
dependencies:
"@ethersproject/address" "^5.7.0"
"@ethersproject/bignumber" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/constants" "^5.7.0"
"@ethersproject/keccak256" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/rlp" "^5.7.0"
"@ethersproject/signing-key" "^5.7.0"
"@ethersproject/web@^5.7.0":
"integrity" "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w=="
"resolved" "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"@ethersproject/base64" "^5.7.0"
"@ethersproject/bytes" "^5.7.0"
"@ethersproject/logger" "^5.7.0"
"@ethersproject/properties" "^5.7.0"
"@ethersproject/strings" "^5.7.0"
"@gar/promisify@^1.0.1":
"integrity" "sha1-MKqCXxHUOGcdWFvUTn/VZFNfwhA="
"resolved" "https://registry.nlark.com/@gar/promisify/download/@gar/promisify-1.1.2.tgz"
"version" "1.1.2"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha1-/T2x1Z7PfPEh6AZQu4ZxL5tV7O0="
"resolved" "https://registry.npm.taobao.org/@istanbuljs/load-nyc-config/download/@istanbuljs/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha1-5F44TkuOwWvOL9kDr3hFD2v37Jg="
"resolved" "https://registry.npm.taobao.org/@istanbuljs/schema/download/@istanbuljs/schema-0.1.3.tgz?cache=0&sync_timestamp=1613227237855&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40istanbuljs%2Fschema%2Fdownload%2F%40istanbuljs%2Fschema-0.1.3.tgz"
"version" "0.1.3"
"@ledgerhq/cryptoassets@^5.27.2":
"integrity" "sha1-EdzJMhGWDG/WYgOS5N2RiWqqvlg="
"resolved" "https://registry.npmmirror.com/@ledgerhq/cryptoassets/download/@ledgerhq/cryptoassets-5.53.0.tgz"
"version" "5.53.0"
dependencies:
"invariant" "2"
"@ledgerhq/devices@^5.26.0":
"integrity" "sha1-10GkpdjxfC+dKC/ScUfm/hmZ7bc="
"resolved" "https://registry.npmmirror.com/@ledgerhq/devices/download/@ledgerhq/devices-5.51.1.tgz"
"version" "5.51.1"
dependencies:
"@ledgerhq/errors" "^5.50.0"
"@ledgerhq/logs" "^5.50.0"
"rxjs" "6"
"semver" "^7.3.5"
"@ledgerhq/errors@^5.26.0", "@ledgerhq/errors@^5.50.0":
"integrity" "sha1-46aDTLjBk0bvyiFMGvhO0o5p2tk="
"resolved" "https://registry.npmmirror.com/@ledgerhq/errors/download/@ledgerhq/errors-5.50.0.tgz"
"version" "5.50.0"
"@ledgerhq/[email protected]":
"integrity" "sha1-ZaLtYTppNA4M1pyUIUdFXsUT0AY="
"resolved" "https://registry.npmmirror.com/@ledgerhq/hw-app-eth/download/@ledgerhq/hw-app-eth-5.27.2.tgz"
"version" "5.27.2"
dependencies:
"@ledgerhq/cryptoassets" "^5.27.2"
"@ledgerhq/errors" "^5.26.0"
"@ledgerhq/hw-transport" "^5.26.0"
"bignumber.js" "^9.0.1"
"rlp" "^2.2.6"
"@ledgerhq/[email protected]":
"integrity" "sha1-t9nRMZPrgrBR/XqDjNZSNy+QfsU="
"resolved" "https://registry.npmmirror.com/@ledgerhq/hw-transport-u2f/download/@ledgerhq/hw-transport-u2f-5.26.0.tgz"
"version" "5.26.0"
dependencies:
"@ledgerhq/errors" "^5.26.0"
"@ledgerhq/hw-transport" "^5.26.0"
"@ledgerhq/logs" "^5.26.0"
"u2f-api" "0.2.7"
"@ledgerhq/hw-transport@^5.26.0", "@ledgerhq/[email protected]":
"integrity" "sha1-v+3D1IQArS/kgnjZRENEtyqp0P4="
"resolved" "https://registry.npmmirror.com/@ledgerhq/hw-transport/download/@ledgerhq/hw-transport-5.26.0.tgz"
"version" "5.26.0"
dependencies:
"@ledgerhq/devices" "^5.26.0"
"@ledgerhq/errors" "^5.26.0"
"events" "^3.2.0"
"@ledgerhq/logs@^5.26.0", "@ledgerhq/logs@^5.50.0":
"integrity" "sha1-KcZBnoN51JarbQQm6t88TRAM0YY="
"resolved" "https://registry.npmmirror.com/@ledgerhq/logs/download/@ledgerhq/logs-5.50.0.tgz"
"version" "5.50.0"
"@metamask/eth-sig-util@^4.0.0":
"integrity" "sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ=="
"resolved" "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"ethereumjs-abi" "^0.6.8"
"ethereumjs-util" "^6.2.1"
"ethjs-util" "^0.1.6"
"tweetnacl" "^1.0.3"
"tweetnacl-util" "^0.15.1"
"@noble/hashes@~1.1.1", "@noble/[email protected]":
"integrity" "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz"
"version" "1.1.2"
"@noble/secp256k1@~1.6.0", "@noble/[email protected]":
"integrity" "sha512-T04e4iTurVy7I8Sw4+c5OSN9/RkPlo1uKxAomtxQNLq8j1uPAqnsqG1bqvY3Jv7c13gyr6dui0zmh/I3+f/JaQ=="
"resolved" "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.6.3.tgz"
"version" "1.6.3"
"@nomicfoundation/ethereumjs-block@^4.0.0":
"integrity" "sha512-bk8uP8VuexLgyIZAHExH1QEovqx0Lzhc9Ntm63nCRKLHXIZkobaFaeCVwTESV7YkPKUk7NiK11s8ryed4CS9yA=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-trie" "^5.0.0"
"@nomicfoundation/ethereumjs-tx" "^4.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"ethereum-cryptography" "0.1.3"
"@nomicfoundation/ethereumjs-blockchain@^6.0.0":
"integrity" "sha512-pLFEoea6MWd81QQYSReLlLfH7N9v7lH66JC/NMPN848ySPPQA5renWnE7wPByfQFzNrPBuDDRFFULMDmj1C0xw=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@nomicfoundation/ethereumjs-block" "^4.0.0"
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-ethash" "^2.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-trie" "^5.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"abstract-level" "^1.0.3"
"debug" "^4.3.3"
"ethereum-cryptography" "0.1.3"
"level" "^8.0.0"
"lru-cache" "^5.1.1"
"memory-level" "^1.0.0"
"@nomicfoundation/ethereumjs-common@^3.0.0":
"integrity" "sha512-WS7qSshQfxoZOpHG/XqlHEGRG1zmyjYrvmATvc4c62+gZXgre1ymYP8ZNgx/3FyZY0TWe9OjFlKOfLqmgOeYwA=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"crc-32" "^1.2.0"
"@nomicfoundation/ethereumjs-ethash@^2.0.0":
"integrity" "sha512-WpDvnRncfDUuXdsAXlI4lXbqUDOA+adYRQaEezIkxqDkc+LDyYDbd/xairmY98GnQzo1zIqsIL6GB5MoMSJDew=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"@nomicfoundation/ethereumjs-block" "^4.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"abstract-level" "^1.0.3"
"bigint-crypto-utils" "^3.0.23"
"ethereum-cryptography" "0.1.3"
"@nomicfoundation/ethereumjs-evm@^1.0.0":
"integrity" "sha512-hVS6qRo3V1PLKCO210UfcEQHvlG7GqR8iFzp0yyjTg2TmJQizcChKgWo8KFsdMw6AyoLgLhHGHw4HdlP8a4i+Q=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"@types/async-eventemitter" "^0.2.1"
"async-eventemitter" "^0.2.4"
"debug" "^4.3.3"
"ethereum-cryptography" "0.1.3"
"mcl-wasm" "^0.7.1"
"rustbn.js" "~0.2.0"
"@nomicfoundation/ethereumjs-rlp@^4.0.0", "@nomicfoundation/ethereumjs-rlp@^4.0.0-beta.2":
"integrity" "sha512-GaSOGk5QbUk4eBP5qFbpXoZoZUj/NrW7MRa0tKY4Ew4c2HAS0GXArEMAamtFrkazp0BO4K5p2ZCG3b2FmbShmw=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-4.0.0.tgz"
"version" "4.0.0"
"@nomicfoundation/ethereumjs-statemanager@^1.0.0":
"integrity" "sha512-jCtqFjcd2QejtuAMjQzbil/4NHf5aAWxUc+CvS0JclQpl+7M0bxMofR2AJdtz+P3u0ke2euhYREDiE7iSO31vQ=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-trie" "^5.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"debug" "^4.3.3"
"ethereum-cryptography" "0.1.3"
"functional-red-black-tree" "^1.0.1"
"@nomicfoundation/ethereumjs-trie@^5.0.0":
"integrity" "sha512-LIj5XdE+s+t6WSuq/ttegJzZ1vliwg6wlb+Y9f4RlBpuK35B9K02bO7xU+E6Rgg9RGptkWd6TVLdedTI4eNc2A=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"ethereum-cryptography" "0.1.3"
"readable-stream" "^3.6.0"
"@nomicfoundation/ethereumjs-tx@^4.0.0":
"integrity" "sha512-Gg3Lir2lNUck43Kp/3x6TfBNwcWC9Z1wYue9Nz3v4xjdcv6oDW9QSMJxqsKw9QEGoBBZ+gqwpW7+F05/rs/g1w=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"ethereum-cryptography" "0.1.3"
"@nomicfoundation/ethereumjs-util@^8.0.0":
"integrity" "sha512-2emi0NJ/HmTG+CGY58fa+DQuAoroFeSH9gKu9O6JnwTtlzJtgfTixuoOqLEgyyzZVvwfIpRueuePb8TonL1y+A=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@nomicfoundation/ethereumjs-rlp" "^4.0.0-beta.2"
"ethereum-cryptography" "0.1.3"
"@nomicfoundation/ethereumjs-vm@^6.0.0":
"integrity" "sha512-JMPxvPQ3fzD063Sg3Tp+UdwUkVxMoo1uML6KSzFhMH3hoQi/LMuXBoEHAoW83/vyNS9BxEe6jm6LmT5xdeEJ6w=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@nomicfoundation/ethereumjs-block" "^4.0.0"
"@nomicfoundation/ethereumjs-blockchain" "^6.0.0"
"@nomicfoundation/ethereumjs-common" "^3.0.0"
"@nomicfoundation/ethereumjs-evm" "^1.0.0"
"@nomicfoundation/ethereumjs-rlp" "^4.0.0"
"@nomicfoundation/ethereumjs-statemanager" "^1.0.0"
"@nomicfoundation/ethereumjs-trie" "^5.0.0"
"@nomicfoundation/ethereumjs-tx" "^4.0.0"
"@nomicfoundation/ethereumjs-util" "^8.0.0"
"@types/async-eventemitter" "^0.2.1"
"async-eventemitter" "^0.2.4"
"debug" "^4.3.3"
"ethereum-cryptography" "0.1.3"
"functional-red-black-tree" "^1.0.1"
"mcl-wasm" "^0.7.1"
"rustbn.js" "~0.2.0"
"@nomicfoundation/[email protected]":
"integrity" "sha512-dlHeIg0pTL4dB1l9JDwbi/JG6dHQaU1xpDK+ugYO8eJ1kxx9Dh2isEUtA4d02cQAl22cjOHTvifAk96A+ItEHA=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.0.tgz"
"version" "0.1.0"
"@nomicfoundation/solidity-analyzer@^0.1.0":
"integrity" "sha512-xGWAiVCGOycvGiP/qrlf9f9eOn7fpNbyJygcB0P21a1MDuVPlKt0Srp7rvtBEutYQ48ouYnRXm33zlRnlTOPHg=="
"resolved" "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.0.tgz"
"version" "0.1.0"
optionalDependencies:
"@nomicfoundation/solidity-analyzer-darwin-arm64" "0.1.0"
"@nomicfoundation/solidity-analyzer-darwin-x64" "0.1.0"
"@nomicfoundation/solidity-analyzer-freebsd-x64" "0.1.0"
"@nomicfoundation/solidity-analyzer-linux-arm64-gnu" "0.1.0"
"@nomicfoundation/solidity-analyzer-linux-arm64-musl" "0.1.0"
"@nomicfoundation/solidity-analyzer-linux-x64-gnu" "0.1.0"
"@nomicfoundation/solidity-analyzer-linux-x64-musl" "0.1.0"
"@nomicfoundation/solidity-analyzer-win32-arm64-msvc" "0.1.0"
"@nomicfoundation/solidity-analyzer-win32-ia32-msvc" "0.1.0"
"@nomicfoundation/solidity-analyzer-win32-x64-msvc" "0.1.0"
"@npmcli/ci-detect@^1.0.0":
"integrity" "sha1-GEeLuqkAw3v72KIAamJixi6LD+E="
"resolved" "https://registry.npmmirror.com/@npmcli/ci-detect/download/@npmcli/ci-detect-1.4.0.tgz"
"version" "1.4.0"
"@npmcli/fs@^1.0.0":
"integrity" "sha1-WJYSz606bqD+r8uQHSnGP9UtsJ8="
"resolved" "https://registry.nlark.com/@npmcli/fs/download/@npmcli/fs-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@gar/promisify" "^1.0.1"
"semver" "^7.3.5"
"@npmcli/git@^2.1.0":
"integrity" "sha1-L7134UdTAkfTfzJZMNRXs+volPY="
"resolved" "https://registry.nlark.com/@npmcli/git/download/@npmcli/git-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"@npmcli/promise-spawn" "^1.3.2"
"lru-cache" "^6.0.0"
"mkdirp" "^1.0.4"
"npm-pick-manifest" "^6.1.1"
"promise-inflight" "^1.0.1"
"promise-retry" "^2.0.1"
"semver" "^7.3.5"
"which" "^2.0.2"
"@npmcli/installed-package-contents@^1.0.6":
"integrity" "sha1-q3QIxhR5EblwqKviYc5RIjKj9Po="
"resolved" "https://registry.npm.taobao.org/@npmcli/installed-package-contents/download/@npmcli/installed-package-contents-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"npm-bundled" "^1.1.1"
"npm-normalize-package-bin" "^1.0.1"
"@npmcli/move-file@^1.0.1":
"integrity" "sha1-GoLD43L3yuklPrZtclQ9a4aFxnQ="
"resolved" "https://registry.npm.taobao.org/@npmcli/move-file/download/@npmcli/move-file-1.1.2.tgz?cache=0&sync_timestamp=1613068732526&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40npmcli%2Fmove-file%2Fdownload%2F%40npmcli%2Fmove-file-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@npmcli/node-gyp@^1.0.2":
"integrity" "sha1-qRLmN0GP/F8ts3XpO4WDdpGkOjM="
"resolved" "https://registry.npmmirror.com/@npmcli/node-gyp/download/@npmcli/node-gyp-1.0.3.tgz?cache=0&sync_timestamp=1633377356800&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40npmcli%2Fnode-gyp%2Fdownload%2F%40npmcli%2Fnode-gyp-1.0.3.tgz"
"version" "1.0.3"
"@npmcli/promise-spawn@^1.2.0", "@npmcli/promise-spawn@^1.3.2":
"integrity" "sha1-QtTlao6SdPuhgNq8CupuOPKSdPU="
"resolved" "https://registry.nlark.com/@npmcli/promise-spawn/download/@npmcli/promise-spawn-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"infer-owner" "^1.0.4"
"@npmcli/run-script@^1.8.2", "@npmcli/run-script@^1.8.3":
"integrity" "sha1-GDFIAqZmCw1Lqkw6/n8a052MKLc="
"resolved" "https://registry.npmmirror.com/@npmcli/run-script/download/@npmcli/run-script-1.8.6.tgz"
"version" "1.8.6"
dependencies:
"@npmcli/node-gyp" "^1.0.2"
"@npmcli/promise-spawn" "^1.3.2"
"node-gyp" "^7.1.0"
"read-package-json-fast" "^2.0.1"
"@rollup/[email protected]":
"integrity" "sha1-Hn0HbE8bKr9+ZSSFcOVV3vw3wjg="
"resolved" "https://registry.npmmirror.com/@rollup/plugin-commonjs/download/@rollup/plugin-commonjs-15.1.0.tgz"
"version" "15.1.0"
dependencies:
"@rollup/pluginutils" "^3.1.0"
"commondir" "^1.0.1"
"estree-walker" "^2.0.1"
"glob" "^7.1.6"
"is-reference" "^1.2.1"
"magic-string" "^0.25.7"
"resolve" "^1.17.0"
"@rollup/[email protected]":
"integrity" "sha1-VOCYZ65pY8WThE2L16nHGClElvM="
"resolved" "https://registry.npm.taobao.org/@rollup/plugin-json/download/@rollup/plugin-json-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"@rollup/pluginutils" "^3.0.8"
"@rollup/[email protected]":
"integrity" "sha1-Ob0ANM6RJrOcFplpX0QLS30rYuY="
"resolved" "https://registry.npmmirror.com/@rollup/plugin-node-resolve/download/@rollup/plugin-node-resolve-9.0.0.tgz?cache=0&sync_timestamp=1634651309904&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40rollup%2Fplugin-node-resolve%2Fdownload%2F%40rollup%2Fplugin-node-resolve-9.0.0.tgz"
"version" "9.0.0"
dependencies:
"@rollup/pluginutils" "^3.1.0"
"@types/resolve" "1.17.1"
"builtin-modules" "^3.1.0"
"deepmerge" "^4.2.2"
"is-module" "^1.0.0"
"resolve" "^1.17.0"
"@rollup/[email protected]":
"integrity" "sha1-zWuuOURN4Rn12QUyK5Hr1AeFYuc="
"resolved" "https://registry.nlark.com/@rollup/plugin-replace/download/@rollup/plugin-replace-2.3.3.tgz"
"version" "2.3.3"
dependencies:
"@rollup/pluginutils" "^3.0.8"
"magic-string" "^0.25.5"
"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.0.9", "@rollup/pluginutils@^3.1.0":
"integrity" "sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s="
"resolved" "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-3.1.0.tgz?cache=0&sync_timestamp=1626395140635&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"@types/estree" "0.0.39"
"estree-walker" "^1.0.1"
"picomatch" "^2.2.2"
"@scure/base@~1.1.0":
"integrity" "sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA=="
"resolved" "https://registry.npmjs.org/@scure/base/-/base-1.1.1.tgz"
"version" "1.1.1"
"@scure/[email protected]":
"integrity" "sha512-ftTW3kKX54YXLCxH6BB7oEEoJfoE2pIgw7MINKAs5PsS6nqKPuKk1haTF/EuHmYqG330t5GSrdmtRuHaY1a62Q=="
"resolved" "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@noble/hashes" "~1.1.1"
"@noble/secp256k1" "~1.6.0"
"@scure/base" "~1.1.0"
"@scure/[email protected]":
"integrity" "sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w=="
"resolved" "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@noble/hashes" "~1.1.1"
"@scure/base" "~1.1.0"
"@sentry/[email protected]":
"integrity" "sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg=="
"resolved" "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/minimal" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ=="
"resolved" "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw=="
"resolved" "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/types" "5.30.0"
"tslib" "^1.9.3"
"@sentry/node@^5.18.1":
"integrity" "sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg=="
"resolved" "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/core" "5.30.0"
"@sentry/hub" "5.30.0"
"@sentry/tracing" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
"cookie" "^0.4.1"
"https-proxy-agent" "^5.0.0"
"lru_map" "^0.3.3"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw=="
"resolved" "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/minimal" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
"tslib" "^1.9.3"
"@sentry/[email protected]":
"integrity" "sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw=="
"resolved" "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz"
"version" "5.30.0"
"@sentry/[email protected]":
"integrity" "sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww=="
"resolved" "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz"
"version" "5.30.0"
dependencies:
"@sentry/types" "5.30.0"
"tslib" "^1.9.3"
"@tootallnate/once@1":
"integrity" "sha1-zLkURTYBeaBOf+av94wA/8Hur4I="
"resolved" "https://registry.npmmirror.com/@tootallnate/once/download/@tootallnate/once-1.1.2.tgz?cache=0&sync_timestamp=1632734160633&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40tootallnate%2Fonce%2Fdownload%2F%40tootallnate%2Fonce-1.1.2.tgz"
"version" "1.1.2"
"@types/assert@^1.4.1":
"integrity" "sha1-qLWpTOX7j0umX9w3/JUHYJEUGJ4="
"resolved" "https://registry.npmmirror.com/@types/assert/download/@types/assert-1.5.6.tgz"
"version" "1.5.6"
"@types/async-eventemitter@^0.2.1":
"integrity" "sha512-M2P4Ng26QbAeITiH7w1d7OxtldgfAe0wobpyJzVK/XOb0cUGKU2R4pfAhqcJBXAe2ife5ZOhSv4wk7p+ffURtg=="
"resolved" "https://registry.npmjs.org/@types/async-eventemitter/-/async-eventemitter-0.2.1.tgz"
"version" "0.2.1"
"@types/bn.js@^4.11.3":
"integrity" "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg=="
"resolved" "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz"
"version" "4.11.6"
dependencies:
"@types/node" "*"
"@types/bn.js@^5.1.0":
"integrity" "sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g=="
"resolved" "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"@types/node" "*"
"@types/component-emitter@^1.2.10":
"integrity" "sha1-UNR9QrNHJTgXo5cJ/vA85moQhQY="
"resolved" "https://registry.npmmirror.com/@types/component-emitter/download/@types/component-emitter-1.2.11.tgz"
"version" "1.2.11"
"@types/cookie@^0.4.0":
"integrity" "sha1-v9AsHyIkVnZ2wVRRmfh8OoYdh40="
"resolved" "https://registry.npmmirror.com/@types/cookie/download/@types/cookie-0.4.1.tgz"
"version" "0.4.1"
"@types/cors@^2.8.8":
"integrity" "sha1-ayxRCnrXA56Y57jT1lmPQ1nlwIA="
"resolved" "https://registry.npmmirror.com/@types/cors/download/@types/cors-2.8.12.tgz"
"version" "2.8.12"
"@types/estree@*", "@types/[email protected]":
"integrity" "sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8="
"resolved" "https://registry.npmmirror.com/@types/estree/download/@types/estree-0.0.39.tgz?cache=0&sync_timestamp=1637264753186&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Festree%2Fdownload%2F%40types%2Festree-0.0.39.tgz"
"version" "0.0.39"
"@types/lru-cache@^5.1.0":
"integrity" "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw=="
"resolved" "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz"
"version" "5.1.1"
"@types/mocha@^5.2.0":
"integrity" "sha1-MV1XDMtWxTRS/4Y4c432BybVtuo="
"resolved" "https://registry.npmmirror.com/@types/mocha/download/@types/mocha-5.2.7.tgz?cache=0&sync_timestamp=1637267254507&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40types%2Fmocha%2Fdownload%2F%40types%2Fmocha-5.2.7.tgz"
"version" "5.2.7"
"@types/node@*", "@types/node@^12.7.4", "@types/node@>=10.0.0":
"integrity" "sha512-i1KGxqcvJaLQali+WuypQnXwcplhtNtjs66eNsZpp2P2FL/trJJxx/VWsM0YCL2iMoIJrbXje48lvIQAQ4p2ZA=="
"resolved" "https://registry.npmmirror.com/@types/node/download/@types/node-12.20.37.tgz"
"version" "12.20.37"
"@types/pbkdf2@^3.0.0":
"integrity" "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ=="
"resolved" "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"@types/node" "*"
"@types/[email protected]":
"integrity" "sha1-Ov1q2JZ8d+Q3bFmKgt3Vj0bsRdY="
"resolved" "https://registry.npmmirror.com/@types/resolve/download/@types/resolve-1.17.1.tgz"
"version" "1.17.1"
dependencies:
"@types/node" "*"
"@types/secp256k1@^4.0.1":
"integrity" "sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w=="
"resolved" "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.3.tgz"
"version" "4.0.3"
dependencies:
"@types/node" "*"
"@types/semver@^7.3.4":
"integrity" "sha1-FSxsIKdojDC5Z+wYQdMazlaYY/w="
"resolved" "https://registry.npmmirror.com/@types/semver/download/@types/semver-7.3.9.tgz"
"version" "7.3.9"
"@ungap/[email protected]":
"integrity" "sha1-qlgEJxHW4ydd033Fl+XTHowpCkQ="
"resolved" "https://registry.nlark.com/@ungap/promise-all-settled/download/@ungap/promise-all-settled-1.1.2.tgz"
"version" "1.1.2"
"abbrev@1":
"integrity" "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
"resolved" "https://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz"
"version" "1.1.1"
"abort-controller@^3.0.0":
"integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
"resolved" "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"event-target-shim" "^5.0.0"
"abstract-level@^1.0.0", "abstract-level@^1.0.2", "abstract-level@^1.0.3":
"integrity" "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA=="
"resolved" "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"buffer" "^6.0.3"
"catering" "^2.1.0"
"is-buffer" "^2.0.5"
"level-supports" "^4.0.0"
"level-transcoder" "^1.0.1"
"module-error" "^1.0.1"
"queue-microtask" "^1.2.3"
"accepts@~1.3.4":
"integrity" "sha1-UxvHJlF6OytB+FACHGzBXqq1B80="
"resolved" "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"adm-zip@^0.4.16":
"integrity" "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg=="
"resolved" "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz"
"version" "0.4.16"
"integrity" "sha1-4h3xCtbCBTKVvLuNq0Cwnb6ofk0="
"resolved" "https://registry.nlark.com/aes-js/download/aes-js-3.0.0.tgz"
"version" "3.0.0"
"agent-base@^6.0.2", "agent-base@6":
"integrity" "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c="
"resolved" "https://registry.npm.taobao.org/agent-base/download/agent-base-6.0.2.tgz?cache=0&sync_timestamp=1603480100923&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fagent-base%2Fdownload%2Fagent-base-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"debug" "4"