forked from SilasZhr/paymaster-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
13972 lines (12554 loc) · 756 KB
/
pnpm-lock.yaml
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
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@nomiclabs/hardhat-ethers':
specifier: ^2.2.3
version: registry.npmmirror.com/@nomiclabs/hardhat-ethers@2.2.3(ethers@6.7.0)(hardhat@2.17.1)
'@openzeppelin/contracts':
specifier: ^4.9.3
version: registry.npmmirror.com/@openzeppelin/contracts@4.9.3
'@typescript-eslint/eslint-plugin':
specifier: ^6.4.0
version: registry.npmmirror.com/@typescript-eslint/eslint-plugin@6.4.0(@typescript-eslint/parser@6.4.0)(eslint@8.4.0)(typescript@5.1.6)
dotenv:
specifier: ^16.3.1
version: registry.npmmirror.com/dotenv@16.3.1
eslint-plugin-n:
specifier: ^16.0.1
version: registry.npmmirror.com/eslint-plugin-n@16.0.1(eslint@8.4.0)
husky:
specifier: ^8.0.3
version: registry.npmmirror.com/husky@8.0.3
devDependencies:
'@nomicfoundation/hardhat-chai-matchers':
specifier: ^2.0.2
version: registry.npmmirror.com/@nomicfoundation/hardhat-chai-matchers@2.0.2(@nomicfoundation/hardhat-ethers@3.0.4)(chai@4.3.7)(ethers@6.7.0)(hardhat@2.17.1)
'@nomicfoundation/hardhat-ethers':
specifier: ^3.0.4
version: registry.npmmirror.com/@nomicfoundation/hardhat-ethers@3.0.4(ethers@6.7.0)(hardhat@2.17.1)
'@nomicfoundation/hardhat-network-helpers':
specifier: ^1.0.8
version: registry.npmmirror.com/@nomicfoundation/hardhat-network-helpers@1.0.8(hardhat@2.17.1)
'@nomicfoundation/hardhat-toolbox':
specifier: ^3.0.0
version: registry.npmmirror.com/@nomicfoundation/hardhat-toolbox@3.0.0(@nomicfoundation/hardhat-chai-matchers@2.0.2)(@nomicfoundation/hardhat-ethers@3.0.4)(@nomicfoundation/hardhat-network-helpers@1.0.8)(@nomicfoundation/hardhat-verify@1.1.1)(@typechain/ethers-v6@0.4.3)(@typechain/hardhat@8.0.3)(@types/chai@4.3.5)(@types/mocha@10.0.1)(@types/node@20.5.1)(chai@4.3.7)(ethers@6.7.0)(hardhat-gas-reporter@1.0.9)(hardhat@2.17.1)(solidity-coverage@0.8.4)(ts-node@10.9.1)(typechain@8.3.1)(typescript@5.1.6)
'@nomicfoundation/hardhat-verify':
specifier: ^1.1.1
version: registry.npmmirror.com/@nomicfoundation/hardhat-verify@1.1.1(hardhat@2.17.1)
'@typechain/ethers-v6':
specifier: ^0.4.3
version: registry.npmmirror.com/@typechain/ethers-v6@0.4.3(ethers@6.7.0)(typechain@8.3.1)(typescript@5.1.6)
'@typechain/hardhat':
specifier: ^8.0.3
version: registry.npmmirror.com/@typechain/hardhat@8.0.3(@typechain/ethers-v6@0.4.3)(ethers@6.7.0)(hardhat@2.17.1)(typechain@8.3.1)
'@types/chai':
specifier: ^4.3.5
version: registry.npmmirror.com/@types/chai@4.3.5
'@types/mocha':
specifier: ^10.0.1
version: registry.npmmirror.com/@types/mocha@10.0.1
chai:
specifier: ^4.3.7
version: registry.npmmirror.com/chai@4.3.7
eslint:
specifier: ^8.4.0
version: registry.npmmirror.com/eslint@8.4.0
eslint-config-standard:
specifier: ^17.0.0
version: registry.npmmirror.com/eslint-config-standard@17.0.0(eslint-plugin-import@2.26.0)(eslint-plugin-n@16.0.1)(eslint-plugin-promise@6.0.0)(eslint@8.4.0)
eslint-config-standard-with-typescript:
specifier: ^21.0.1
version: registry.npmmirror.com/eslint-config-standard-with-typescript@21.0.1(@typescript-eslint/eslint-plugin@6.4.0)(eslint-plugin-import@2.26.0)(eslint-plugin-node@11.1.0)(eslint-plugin-promise@6.0.0)(eslint@8.4.0)(typescript@5.1.6)
eslint-plugin-import:
specifier: ^2.26.0
version: registry.npmmirror.com/eslint-plugin-import@2.26.0(@typescript-eslint/parser@6.4.0)(eslint@8.4.0)
eslint-plugin-node:
specifier: ^11.1.0
version: registry.npmmirror.com/eslint-plugin-node@11.1.0(eslint@8.4.0)
eslint-plugin-promise:
specifier: ^6.0.0
version: registry.npmmirror.com/eslint-plugin-promise@6.0.0(eslint@8.4.0)
eslint-plugin-standard:
specifier: ^5.0.0
version: registry.npmmirror.com/eslint-plugin-standard@5.0.0(eslint@8.4.0)
ethereum-waffle:
specifier: ^3.4.0
version: registry.npmmirror.com/ethereum-waffle@3.4.0(typescript@5.1.6)
ethers:
specifier: ^6.7.0
version: registry.npmmirror.com/ethers@6.7.0
hardhat:
specifier: ^2.17.1
version: registry.npmmirror.com/hardhat@2.17.1(ts-node@10.9.1)(typescript@5.1.6)
hardhat-deploy:
specifier: ^0.11.34
version: registry.npmmirror.com/hardhat-deploy@0.11.34
hardhat-deploy-ethers:
specifier: ^0.4.1
version: registry.npmmirror.com/hardhat-deploy-ethers@0.4.1(@nomicfoundation/hardhat-ethers@3.0.4)(hardhat-deploy@0.11.34)(hardhat@2.17.1)
hardhat-gas-reporter:
specifier: ^1.0.9
version: registry.npmmirror.com/hardhat-gas-reporter@1.0.9(hardhat@2.17.1)
prettier:
specifier: ^2.8.8
version: registry.npmmirror.com/prettier@2.8.8
prettier-plugin-solidity:
specifier: 1.1.3
version: registry.npmmirror.com/prettier-plugin-solidity@1.1.3(prettier@2.8.8)
solhint:
specifier: ^3.3.7
version: registry.npmmirror.com/solhint@3.3.7
solidity-coverage:
specifier: ^0.8.4
version: registry.npmmirror.com/solidity-coverage@0.8.4(hardhat@2.17.1)
ts-generator:
specifier: ^0.1.1
version: registry.npmmirror.com/ts-generator@0.1.1
ts-mocha:
specifier: ^10.0.0
version: registry.npmmirror.com/ts-mocha@10.0.0(mocha@10.2.0)
ts-node:
specifier: ^10.9.1
version: registry.npmmirror.com/ts-node@10.9.1(@types/node@20.5.1)(typescript@5.1.6)
typechain:
specifier: ^8.3.1
version: registry.npmmirror.com/typechain@8.3.1(typescript@5.1.6)
typescript:
specifier: ^5.1.6
version: registry.npmmirror.com/typescript@5.1.6
packages:
github.com/ethereumjs/ethereumjs-abi/ee3994657fa7a427238e6ba92a84d0b529bbcde0:
resolution: {tarball: https://codeload.github.com/ethereumjs/ethereumjs-abi/tar.gz/ee3994657fa7a427238e6ba92a84d0b529bbcde0}
name: ethereumjs-abi
version: 0.6.8
dependencies:
bn.js: registry.npmmirror.com/bn.js@4.12.0
ethereumjs-util: registry.npmmirror.com/ethereumjs-util@6.2.1
dev: true
registry.npmmirror.com/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz}
name: '@aashutoshrathi/word-wrap'
version: 1.2.6
engines: {node: '>=0.10.0'}
registry.npmmirror.com/@adraffy/ens-normalize@1.9.2:
resolution: {integrity: sha512-0h+FrQDqe2Wn+IIGFkTCd4aAwTJ+7834Ek1COohCyV26AXhwQ7WQaz+4F/nLOeVl/3BtWHOHLPsq46V8YB46Eg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@adraffy/ens-normalize/-/ens-normalize-1.9.2.tgz}
name: '@adraffy/ens-normalize'
version: 1.9.2
registry.npmmirror.com/@babel/code-frame@7.22.10:
resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.10.tgz}
name: '@babel/code-frame'
version: 7.22.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.10
chalk: registry.npmmirror.com/chalk@2.4.2
dev: true
registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5:
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmmirror.com/@babel/highlight@7.22.10:
resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.10.tgz}
name: '@babel/highlight'
version: 7.22.10
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.5
chalk: registry.npmmirror.com/chalk@2.4.2
js-tokens: registry.npmmirror.com/js-tokens@4.0.0
dev: true
registry.npmmirror.com/@chainsafe/as-sha256@0.3.1:
resolution: {integrity: sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz}
name: '@chainsafe/as-sha256'
version: 0.3.1
registry.npmmirror.com/@chainsafe/persistent-merkle-tree@0.4.2:
resolution: {integrity: sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.4.2.tgz}
name: '@chainsafe/persistent-merkle-tree'
version: 0.4.2
dependencies:
'@chainsafe/as-sha256': registry.npmmirror.com/@chainsafe/as-sha256@0.3.1
registry.npmmirror.com/@chainsafe/persistent-merkle-tree@0.5.0:
resolution: {integrity: sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.5.0.tgz}
name: '@chainsafe/persistent-merkle-tree'
version: 0.5.0
dependencies:
'@chainsafe/as-sha256': registry.npmmirror.com/@chainsafe/as-sha256@0.3.1
registry.npmmirror.com/@chainsafe/ssz@0.10.2:
resolution: {integrity: sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@chainsafe/ssz/-/ssz-0.10.2.tgz}
name: '@chainsafe/ssz'
version: 0.10.2
dependencies:
'@chainsafe/as-sha256': registry.npmmirror.com/@chainsafe/as-sha256@0.3.1
'@chainsafe/persistent-merkle-tree': registry.npmmirror.com/@chainsafe/persistent-merkle-tree@0.5.0
registry.npmmirror.com/@chainsafe/ssz@0.9.4:
resolution: {integrity: sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@chainsafe/ssz/-/ssz-0.9.4.tgz}
name: '@chainsafe/ssz'
version: 0.9.4
dependencies:
'@chainsafe/as-sha256': registry.npmmirror.com/@chainsafe/as-sha256@0.3.1
'@chainsafe/persistent-merkle-tree': registry.npmmirror.com/@chainsafe/persistent-merkle-tree@0.4.2
case: registry.npmmirror.com/case@1.6.3
registry.npmmirror.com/@cspotcode/source-map-support@0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz}
name: '@cspotcode/source-map-support'
version: 0.8.1
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.9
registry.npmmirror.com/@ensdomains/ens@0.4.5:
resolution: {integrity: sha512-JSvpj1iNMFjK6K+uVl4unqMoa9rf5jopb8cya5UGBWz23Nw8hSNT7efgUx4BTlAPAgpNlEioUfeTyQ6J9ZvTVw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ensdomains/ens/-/ens-0.4.5.tgz}
name: '@ensdomains/ens'
version: 0.4.5
deprecated: Please use @ensdomains/ens-contracts
dependencies:
bluebird: registry.npmmirror.com/bluebird@3.7.2
eth-ens-namehash: registry.npmmirror.com/eth-ens-namehash@2.0.8
solc: registry.npmmirror.com/solc@0.4.26
testrpc: registry.npmmirror.com/testrpc@0.0.1
web3-utils: registry.npmmirror.com/web3-utils@1.10.1
dev: true
registry.npmmirror.com/@ensdomains/resolver@0.2.4:
resolution: {integrity: sha512-bvaTH34PMCbv6anRa9I/0zjLJgY4EuznbEMgbV77JBCQ9KNC46rzi0avuxpOfu+xDjPEtSFGqVEOr5GlUSGudA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ensdomains/resolver/-/resolver-0.2.4.tgz}
name: '@ensdomains/resolver'
version: 0.2.4
deprecated: Please use @ensdomains/ens-contracts
dev: true
registry.npmmirror.com/@eslint-community/eslint-utils@4.4.0(eslint@8.4.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz}
id: registry.npmmirror.com/@eslint-community/eslint-utils/4.4.0
name: '@eslint-community/eslint-utils'
version: 4.4.0
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: registry.npmmirror.com/eslint@8.4.0
eslint-visitor-keys: registry.npmmirror.com/eslint-visitor-keys@3.4.3
registry.npmmirror.com/@eslint-community/regexpp@4.6.2:
resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.6.2.tgz}
name: '@eslint-community/regexpp'
version: 4.6.2
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
registry.npmmirror.com/@eslint/eslintrc@1.4.1:
resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz}
name: '@eslint/eslintrc'
version: 1.4.1
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: registry.npmmirror.com/ajv@6.12.6
debug: registry.npmmirror.com/debug@4.3.4(supports-color@8.1.1)
espree: registry.npmmirror.com/espree@9.6.1
globals: registry.npmmirror.com/globals@13.21.0
ignore: registry.npmmirror.com/ignore@5.2.4
import-fresh: registry.npmmirror.com/import-fresh@3.3.0
js-yaml: registry.npmmirror.com/js-yaml@4.1.0
minimatch: registry.npmmirror.com/minimatch@3.1.2
strip-json-comments: registry.npmmirror.com/strip-json-comments@3.1.1
transitivePeerDependencies:
- supports-color
registry.npmmirror.com/@ethereum-waffle/chai@3.4.4:
resolution: {integrity: sha512-/K8czydBtXXkcM9X6q29EqEkc5dN3oYenyH2a9hF7rGAApAJUpH8QBtojxOY/xQ2up5W332jqgxwp0yPiYug1g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereum-waffle/chai/-/chai-3.4.4.tgz}
name: '@ethereum-waffle/chai'
version: 3.4.4
engines: {node: '>=10.0'}
dependencies:
'@ethereum-waffle/provider': registry.npmmirror.com/@ethereum-waffle/provider@3.4.4
ethers: registry.npmmirror.com/ethers@5.7.2
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
dev: true
registry.npmmirror.com/@ethereum-waffle/compiler@3.4.4(typescript@5.1.6):
resolution: {integrity: sha512-RUK3axJ8IkD5xpWjWoJgyHclOeEzDLQFga6gKpeGxiS/zBu+HB0W2FvsrrLalTFIaPw/CGYACRBSIxqiCqwqTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereum-waffle/compiler/-/compiler-3.4.4.tgz}
id: registry.npmmirror.com/@ethereum-waffle/compiler/3.4.4
name: '@ethereum-waffle/compiler'
version: 3.4.4
engines: {node: '>=10.0'}
dependencies:
'@resolver-engine/imports': registry.npmmirror.com/@resolver-engine/imports@0.3.3
'@resolver-engine/imports-fs': registry.npmmirror.com/@resolver-engine/imports-fs@0.3.3
'@typechain/ethers-v5': registry.npmmirror.com/@typechain/ethers-v5@2.0.0(ethers@5.7.2)(typechain@3.0.0)
'@types/mkdirp': registry.npmmirror.com/@types/mkdirp@0.5.2
'@types/node-fetch': registry.npmmirror.com/@types/node-fetch@2.6.4
ethers: registry.npmmirror.com/ethers@5.7.2
mkdirp: registry.npmmirror.com/mkdirp@0.5.6
node-fetch: registry.npmmirror.com/node-fetch@2.6.13
solc: registry.npmmirror.com/solc@0.6.12
ts-generator: registry.npmmirror.com/ts-generator@0.1.1
typechain: registry.npmmirror.com/typechain@3.0.0(typescript@5.1.6)
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- typescript
- utf-8-validate
dev: true
registry.npmmirror.com/@ethereum-waffle/ens@3.4.4:
resolution: {integrity: sha512-0m4NdwWxliy3heBYva1Wr4WbJKLnwXizmy5FfSSr5PMbjI7SIGCdCB59U7/ZzY773/hY3bLnzLwvG5mggVjJWg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereum-waffle/ens/-/ens-3.4.4.tgz}
name: '@ethereum-waffle/ens'
version: 3.4.4
engines: {node: '>=10.0'}
dependencies:
'@ensdomains/ens': registry.npmmirror.com/@ensdomains/ens@0.4.5
'@ensdomains/resolver': registry.npmmirror.com/@ensdomains/resolver@0.2.4
ethers: registry.npmmirror.com/ethers@5.7.2
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: true
registry.npmmirror.com/@ethereum-waffle/mock-contract@3.4.4:
resolution: {integrity: sha512-Mp0iB2YNWYGUV+VMl5tjPsaXKbKo8MDH9wSJ702l9EBjdxFf/vBvnMBAC1Fub1lLtmD0JHtp1pq+mWzg/xlLnA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereum-waffle/mock-contract/-/mock-contract-3.4.4.tgz}
name: '@ethereum-waffle/mock-contract'
version: 3.4.4
engines: {node: '>=10.0'}
dependencies:
'@ethersproject/abi': registry.npmmirror.com/@ethersproject/abi@5.7.0
ethers: registry.npmmirror.com/ethers@5.7.2
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: true
registry.npmmirror.com/@ethereum-waffle/provider@3.4.4:
resolution: {integrity: sha512-GK8oKJAM8+PKy2nK08yDgl4A80mFuI8zBkE0C9GqTRYQqvuxIyXoLmJ5NZU9lIwyWVv5/KsoA11BgAv2jXE82g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereum-waffle/provider/-/provider-3.4.4.tgz}
name: '@ethereum-waffle/provider'
version: 3.4.4
engines: {node: '>=10.0'}
dependencies:
'@ethereum-waffle/ens': registry.npmmirror.com/@ethereum-waffle/ens@3.4.4
ethers: registry.npmmirror.com/ethers@5.7.2
ganache-core: registry.npmmirror.com/ganache-core@2.13.2
patch-package: registry.npmmirror.com/patch-package@6.5.1
postinstall-postinstall: registry.npmmirror.com/postinstall-postinstall@2.1.0
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
dev: true
registry.npmmirror.com/@ethereumjs/rlp@4.0.1:
resolution: {integrity: sha512-tqsQiBQDQdmPWE1xkkBq4rlSW5QZpLOUJ5RJh2/9fug+q9tnUhuZoVLk7s0scUIKTOzEtR72DFBXI4WiZcMpvw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereumjs/rlp/-/rlp-4.0.1.tgz}
name: '@ethereumjs/rlp'
version: 4.0.1
engines: {node: '>=14'}
hasBin: true
dev: true
registry.npmmirror.com/@ethereumjs/util@8.1.0:
resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethereumjs/util/-/util-8.1.0.tgz}
name: '@ethereumjs/util'
version: 8.1.0
engines: {node: '>=14'}
dependencies:
'@ethereumjs/rlp': registry.npmmirror.com/@ethereumjs/rlp@4.0.1
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@2.1.2
micro-ftch: registry.npmmirror.com/micro-ftch@0.3.1
dev: true
registry.npmmirror.com/@ethersproject/abi@5.0.0-beta.153:
resolution: {integrity: sha512-aXweZ1Z7vMNzJdLpR1CZUAIgnwjrZeUSvN9syCwlBaEBUFJmFY+HHnfuTI5vIhVs/mRkfJVrbEyl51JZQqyjAg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/abi/-/abi-5.0.0-beta.153.tgz}
name: '@ethersproject/abi'
version: 5.0.0-beta.153
requiresBuild: true
dependencies:
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/hash': registry.npmmirror.com/@ethersproject/hash@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
dev: true
optional: true
registry.npmmirror.com/@ethersproject/abi@5.7.0:
resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/abi/-/abi-5.7.0.tgz}
name: '@ethersproject/abi'
version: 5.7.0
dependencies:
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/hash': registry.npmmirror.com/@ethersproject/hash@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
registry.npmmirror.com/@ethersproject/abstract-provider@5.7.0:
resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz}
name: '@ethersproject/abstract-provider'
version: 5.7.0
dependencies:
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/networks': registry.npmmirror.com/@ethersproject/networks@5.7.1
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
'@ethersproject/web': registry.npmmirror.com/@ethersproject/web@5.7.1
registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0:
resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz}
name: '@ethersproject/abstract-signer'
version: 5.7.0
dependencies:
'@ethersproject/abstract-provider': registry.npmmirror.com/@ethersproject/abstract-provider@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
registry.npmmirror.com/@ethersproject/address@5.7.0:
resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/address/-/address-5.7.0.tgz}
name: '@ethersproject/address'
version: 5.7.0
dependencies:
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/rlp': registry.npmmirror.com/@ethersproject/rlp@5.7.0
registry.npmmirror.com/@ethersproject/base64@5.7.0:
resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/base64/-/base64-5.7.0.tgz}
name: '@ethersproject/base64'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
registry.npmmirror.com/@ethersproject/basex@5.7.0:
resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/basex/-/basex-5.7.0.tgz}
name: '@ethersproject/basex'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
registry.npmmirror.com/@ethersproject/bignumber@5.7.0:
resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/bignumber/-/bignumber-5.7.0.tgz}
name: '@ethersproject/bignumber'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
bn.js: registry.npmmirror.com/bn.js@5.2.1
registry.npmmirror.com/@ethersproject/bytes@5.7.0:
resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/bytes/-/bytes-5.7.0.tgz}
name: '@ethersproject/bytes'
version: 5.7.0
dependencies:
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/constants@5.7.0:
resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/constants/-/constants-5.7.0.tgz}
name: '@ethersproject/constants'
version: 5.7.0
dependencies:
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
registry.npmmirror.com/@ethersproject/contracts@5.7.0:
resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/contracts/-/contracts-5.7.0.tgz}
name: '@ethersproject/contracts'
version: 5.7.0
dependencies:
'@ethersproject/abi': registry.npmmirror.com/@ethersproject/abi@5.7.0
'@ethersproject/abstract-provider': registry.npmmirror.com/@ethersproject/abstract-provider@5.7.0
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
registry.npmmirror.com/@ethersproject/hash@5.7.0:
resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/hash/-/hash-5.7.0.tgz}
name: '@ethersproject/hash'
version: 5.7.0
dependencies:
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/base64': registry.npmmirror.com/@ethersproject/base64@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
registry.npmmirror.com/@ethersproject/hdnode@5.7.0:
resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/hdnode/-/hdnode-5.7.0.tgz}
name: '@ethersproject/hdnode'
version: 5.7.0
dependencies:
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/basex': registry.npmmirror.com/@ethersproject/basex@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/pbkdf2': registry.npmmirror.com/@ethersproject/pbkdf2@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/sha2': registry.npmmirror.com/@ethersproject/sha2@5.7.0
'@ethersproject/signing-key': registry.npmmirror.com/@ethersproject/signing-key@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
'@ethersproject/wordlists': registry.npmmirror.com/@ethersproject/wordlists@5.7.0
registry.npmmirror.com/@ethersproject/json-wallets@5.7.0:
resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz}
name: '@ethersproject/json-wallets'
version: 5.7.0
dependencies:
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/hdnode': registry.npmmirror.com/@ethersproject/hdnode@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/pbkdf2': registry.npmmirror.com/@ethersproject/pbkdf2@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/random': registry.npmmirror.com/@ethersproject/random@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
aes-js: registry.npmmirror.com/aes-js@3.0.0
scrypt-js: registry.npmmirror.com/scrypt-js@3.0.1
registry.npmmirror.com/@ethersproject/keccak256@5.7.0:
resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/keccak256/-/keccak256-5.7.0.tgz}
name: '@ethersproject/keccak256'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
js-sha3: registry.npmmirror.com/js-sha3@0.8.0
registry.npmmirror.com/@ethersproject/logger@5.7.0:
resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/logger/-/logger-5.7.0.tgz}
name: '@ethersproject/logger'
version: 5.7.0
registry.npmmirror.com/@ethersproject/networks@5.7.1:
resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/networks/-/networks-5.7.1.tgz}
name: '@ethersproject/networks'
version: 5.7.1
dependencies:
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/pbkdf2@5.7.0:
resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz}
name: '@ethersproject/pbkdf2'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/sha2': registry.npmmirror.com/@ethersproject/sha2@5.7.0
registry.npmmirror.com/@ethersproject/properties@5.7.0:
resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/properties/-/properties-5.7.0.tgz}
name: '@ethersproject/properties'
version: 5.7.0
dependencies:
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/providers@5.7.2:
resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/providers/-/providers-5.7.2.tgz}
name: '@ethersproject/providers'
version: 5.7.2
dependencies:
'@ethersproject/abstract-provider': registry.npmmirror.com/@ethersproject/abstract-provider@5.7.0
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/base64': registry.npmmirror.com/@ethersproject/base64@5.7.0
'@ethersproject/basex': registry.npmmirror.com/@ethersproject/basex@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/hash': registry.npmmirror.com/@ethersproject/hash@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/networks': registry.npmmirror.com/@ethersproject/networks@5.7.1
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/random': registry.npmmirror.com/@ethersproject/random@5.7.0
'@ethersproject/rlp': registry.npmmirror.com/@ethersproject/rlp@5.7.0
'@ethersproject/sha2': registry.npmmirror.com/@ethersproject/sha2@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
'@ethersproject/web': registry.npmmirror.com/@ethersproject/web@5.7.1
bech32: registry.npmmirror.com/bech32@1.1.4
ws: registry.npmmirror.com/ws@7.4.6
transitivePeerDependencies:
- bufferutil
- utf-8-validate
registry.npmmirror.com/@ethersproject/random@5.7.0:
resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/random/-/random-5.7.0.tgz}
name: '@ethersproject/random'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/rlp@5.7.0:
resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/rlp/-/rlp-5.7.0.tgz}
name: '@ethersproject/rlp'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/sha2@5.7.0:
resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/sha2/-/sha2-5.7.0.tgz}
name: '@ethersproject/sha2'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
hash.js: registry.npmmirror.com/hash.js@1.1.7
registry.npmmirror.com/@ethersproject/signing-key@5.7.0:
resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/signing-key/-/signing-key-5.7.0.tgz}
name: '@ethersproject/signing-key'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
bn.js: registry.npmmirror.com/bn.js@5.2.1
elliptic: registry.npmmirror.com/elliptic@6.5.4
hash.js: registry.npmmirror.com/hash.js@1.1.7
registry.npmmirror.com/@ethersproject/solidity@5.7.0:
resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/solidity/-/solidity-5.7.0.tgz}
name: '@ethersproject/solidity'
version: 5.7.0
dependencies:
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/sha2': registry.npmmirror.com/@ethersproject/sha2@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
registry.npmmirror.com/@ethersproject/strings@5.7.0:
resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/strings/-/strings-5.7.0.tgz}
name: '@ethersproject/strings'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/transactions@5.7.0:
resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/transactions/-/transactions-5.7.0.tgz}
name: '@ethersproject/transactions'
version: 5.7.0
dependencies:
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/rlp': registry.npmmirror.com/@ethersproject/rlp@5.7.0
'@ethersproject/signing-key': registry.npmmirror.com/@ethersproject/signing-key@5.7.0
registry.npmmirror.com/@ethersproject/units@5.7.0:
resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/units/-/units-5.7.0.tgz}
name: '@ethersproject/units'
version: 5.7.0
dependencies:
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/constants': registry.npmmirror.com/@ethersproject/constants@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
registry.npmmirror.com/@ethersproject/wallet@5.7.0:
resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/wallet/-/wallet-5.7.0.tgz}
name: '@ethersproject/wallet'
version: 5.7.0
dependencies:
'@ethersproject/abstract-provider': registry.npmmirror.com/@ethersproject/abstract-provider@5.7.0
'@ethersproject/abstract-signer': registry.npmmirror.com/@ethersproject/abstract-signer@5.7.0
'@ethersproject/address': registry.npmmirror.com/@ethersproject/address@5.7.0
'@ethersproject/bignumber': registry.npmmirror.com/@ethersproject/bignumber@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/hash': registry.npmmirror.com/@ethersproject/hash@5.7.0
'@ethersproject/hdnode': registry.npmmirror.com/@ethersproject/hdnode@5.7.0
'@ethersproject/json-wallets': registry.npmmirror.com/@ethersproject/json-wallets@5.7.0
'@ethersproject/keccak256': registry.npmmirror.com/@ethersproject/keccak256@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/random': registry.npmmirror.com/@ethersproject/random@5.7.0
'@ethersproject/signing-key': registry.npmmirror.com/@ethersproject/signing-key@5.7.0
'@ethersproject/transactions': registry.npmmirror.com/@ethersproject/transactions@5.7.0
'@ethersproject/wordlists': registry.npmmirror.com/@ethersproject/wordlists@5.7.0
registry.npmmirror.com/@ethersproject/web@5.7.1:
resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/web/-/web-5.7.1.tgz}
name: '@ethersproject/web'
version: 5.7.1
dependencies:
'@ethersproject/base64': registry.npmmirror.com/@ethersproject/base64@5.7.0
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
registry.npmmirror.com/@ethersproject/wordlists@5.7.0:
resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@ethersproject/wordlists/-/wordlists-5.7.0.tgz}
name: '@ethersproject/wordlists'
version: 5.7.0
dependencies:
'@ethersproject/bytes': registry.npmmirror.com/@ethersproject/bytes@5.7.0
'@ethersproject/hash': registry.npmmirror.com/@ethersproject/hash@5.7.0
'@ethersproject/logger': registry.npmmirror.com/@ethersproject/logger@5.7.0
'@ethersproject/properties': registry.npmmirror.com/@ethersproject/properties@5.7.0
'@ethersproject/strings': registry.npmmirror.com/@ethersproject/strings@5.7.0
registry.npmmirror.com/@humanwhocodes/config-array@0.9.5:
resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz}
name: '@humanwhocodes/config-array'
version: 0.9.5
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': registry.npmmirror.com/@humanwhocodes/object-schema@1.2.1
debug: registry.npmmirror.com/debug@4.3.4(supports-color@8.1.1)
minimatch: registry.npmmirror.com/minimatch@3.1.2
transitivePeerDependencies:
- supports-color
registry.npmmirror.com/@humanwhocodes/object-schema@1.2.1:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz}
name: '@humanwhocodes/object-schema'
version: 1.2.1
registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.1
engines: {node: '>=6.0.0'}
registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.15
registry.npmmirror.com/@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.9
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15
registry.npmmirror.com/@metamask/eth-sig-util@4.0.1:
resolution: {integrity: sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz}
name: '@metamask/eth-sig-util'
version: 4.0.1
engines: {node: '>=12.0.0'}
dependencies:
ethereumjs-abi: registry.npmmirror.com/ethereumjs-abi@0.6.8
ethereumjs-util: registry.npmmirror.com/ethereumjs-util@6.2.1
ethjs-util: registry.npmmirror.com/ethjs-util@0.1.6
tweetnacl: registry.npmmirror.com/tweetnacl@1.0.3
tweetnacl-util: registry.npmmirror.com/tweetnacl-util@0.15.1
registry.npmmirror.com/@noble/curves@1.1.0:
resolution: {integrity: sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@noble/curves/-/curves-1.1.0.tgz}
name: '@noble/curves'
version: 1.1.0
dependencies:
'@noble/hashes': registry.npmmirror.com/@noble/hashes@1.3.1
dev: true
registry.npmmirror.com/@noble/hashes@1.1.2:
resolution: {integrity: sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@noble/hashes/-/hashes-1.1.2.tgz}
name: '@noble/hashes'
version: 1.1.2
registry.npmmirror.com/@noble/hashes@1.2.0:
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@noble/hashes/-/hashes-1.2.0.tgz}
name: '@noble/hashes'
version: 1.2.0
registry.npmmirror.com/@noble/hashes@1.3.1:
resolution: {integrity: sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@noble/hashes/-/hashes-1.3.1.tgz}
name: '@noble/hashes'
version: 1.3.1
engines: {node: '>= 16'}
dev: true
registry.npmmirror.com/@noble/secp256k1@1.7.1:
resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@noble/secp256k1/-/secp256k1-1.7.1.tgz}
name: '@noble/secp256k1'
version: 1.7.1
registry.npmmirror.com/@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz}
name: '@nodelib/fs.scandir'
version: 2.1.5
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': registry.npmmirror.com/@nodelib/fs.stat@2.0.5
run-parallel: registry.npmmirror.com/run-parallel@1.2.0
registry.npmmirror.com/@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz}
name: '@nodelib/fs.stat'
version: 2.0.5
engines: {node: '>= 8'}
registry.npmmirror.com/@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz}
name: '@nodelib/fs.walk'
version: 1.2.8
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': registry.npmmirror.com/@nodelib/fs.scandir@2.1.5
fastq: registry.npmmirror.com/fastq@1.15.0
registry.npmmirror.com/@nomicfoundation/ethereumjs-block@5.0.1:
resolution: {integrity: sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz}
name: '@nomicfoundation/ethereumjs-block'
version: 5.0.1
engines: {node: '>=14'}
dependencies:
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
'@nomicfoundation/ethereumjs-trie': registry.npmmirror.com/@nomicfoundation/ethereumjs-trie@6.0.1
'@nomicfoundation/ethereumjs-tx': registry.npmmirror.com/@nomicfoundation/ethereumjs-tx@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
ethers: registry.npmmirror.com/ethers@5.7.2
transitivePeerDependencies:
- bufferutil
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-blockchain@7.0.1:
resolution: {integrity: sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz}
name: '@nomicfoundation/ethereumjs-blockchain'
version: 7.0.1
engines: {node: '>=14'}
dependencies:
'@nomicfoundation/ethereumjs-block': registry.npmmirror.com/@nomicfoundation/ethereumjs-block@5.0.1
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-ethash': registry.npmmirror.com/@nomicfoundation/ethereumjs-ethash@3.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
'@nomicfoundation/ethereumjs-trie': registry.npmmirror.com/@nomicfoundation/ethereumjs-trie@6.0.1
'@nomicfoundation/ethereumjs-tx': registry.npmmirror.com/@nomicfoundation/ethereumjs-tx@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
abstract-level: registry.npmmirror.com/abstract-level@1.0.3
debug: registry.npmmirror.com/debug@4.3.4(supports-color@8.1.1)
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
level: registry.npmmirror.com/level@8.0.0
lru-cache: registry.npmmirror.com/lru-cache@5.1.1
memory-level: registry.npmmirror.com/memory-level@1.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1:
resolution: {integrity: sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz}
name: '@nomicfoundation/ethereumjs-common'
version: 4.0.1
dependencies:
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
crc-32: registry.npmmirror.com/crc-32@1.2.2
registry.npmmirror.com/@nomicfoundation/ethereumjs-ethash@3.0.1:
resolution: {integrity: sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz}
name: '@nomicfoundation/ethereumjs-ethash'
version: 3.0.1
engines: {node: '>=14'}
dependencies:
'@nomicfoundation/ethereumjs-block': registry.npmmirror.com/@nomicfoundation/ethereumjs-block@5.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
abstract-level: registry.npmmirror.com/abstract-level@1.0.3
bigint-crypto-utils: registry.npmmirror.com/bigint-crypto-utils@3.3.0
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-evm@2.0.1:
resolution: {integrity: sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz}
name: '@nomicfoundation/ethereumjs-evm'
version: 2.0.1
engines: {node: '>=14'}
dependencies:
'@ethersproject/providers': registry.npmmirror.com/@ethersproject/providers@5.7.2
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-tx': registry.npmmirror.com/@nomicfoundation/ethereumjs-tx@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
debug: registry.npmmirror.com/debug@4.3.4(supports-color@8.1.1)
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
mcl-wasm: registry.npmmirror.com/mcl-wasm@0.7.9
rustbn.js: registry.npmmirror.com/rustbn.js@0.2.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1:
resolution: {integrity: sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz}
name: '@nomicfoundation/ethereumjs-rlp'
version: 5.0.1
engines: {node: '>=14'}
hasBin: true
registry.npmmirror.com/@nomicfoundation/ethereumjs-statemanager@2.0.1:
resolution: {integrity: sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz}
name: '@nomicfoundation/ethereumjs-statemanager'
version: 2.0.1
dependencies:
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
debug: registry.npmmirror.com/debug@4.3.4(supports-color@8.1.1)
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
ethers: registry.npmmirror.com/ethers@5.7.2
js-sdsl: registry.npmmirror.com/js-sdsl@4.4.2
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-trie@6.0.1:
resolution: {integrity: sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz}
name: '@nomicfoundation/ethereumjs-trie'
version: 6.0.1
engines: {node: '>=14'}
dependencies:
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
'@types/readable-stream': registry.npmmirror.com/@types/readable-stream@2.3.15
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
readable-stream: registry.npmmirror.com/readable-stream@3.6.2
registry.npmmirror.com/@nomicfoundation/ethereumjs-tx@5.0.1:
resolution: {integrity: sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz}
name: '@nomicfoundation/ethereumjs-tx'
version: 5.0.1
engines: {node: '>=14'}
dependencies:
'@chainsafe/ssz': registry.npmmirror.com/@chainsafe/ssz@0.9.4
'@ethersproject/providers': registry.npmmirror.com/@ethersproject/providers@5.7.2
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
'@nomicfoundation/ethereumjs-util': registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
transitivePeerDependencies:
- bufferutil
- utf-8-validate
registry.npmmirror.com/@nomicfoundation/ethereumjs-util@9.0.1:
resolution: {integrity: sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz}
name: '@nomicfoundation/ethereumjs-util'
version: 9.0.1
engines: {node: '>=14'}
dependencies:
'@chainsafe/ssz': registry.npmmirror.com/@chainsafe/ssz@0.10.2
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1
ethereum-cryptography: registry.npmmirror.com/ethereum-cryptography@0.1.3
registry.npmmirror.com/@nomicfoundation/ethereumjs-vm@7.0.1:
resolution: {integrity: sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz}
name: '@nomicfoundation/ethereumjs-vm'
version: 7.0.1
engines: {node: '>=14'}
dependencies:
'@nomicfoundation/ethereumjs-block': registry.npmmirror.com/@nomicfoundation/ethereumjs-block@5.0.1
'@nomicfoundation/ethereumjs-blockchain': registry.npmmirror.com/@nomicfoundation/ethereumjs-blockchain@7.0.1
'@nomicfoundation/ethereumjs-common': registry.npmmirror.com/@nomicfoundation/ethereumjs-common@4.0.1
'@nomicfoundation/ethereumjs-evm': registry.npmmirror.com/@nomicfoundation/ethereumjs-evm@2.0.1
'@nomicfoundation/ethereumjs-rlp': registry.npmmirror.com/@nomicfoundation/ethereumjs-rlp@5.0.1