generated from protokol/core-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
15018 lines (13555 loc) · 501 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 4
cacheKey: 8
"@arcanis/slice-ansi@npm:^1.0.2":
version: 1.0.2
resolution: "@arcanis/slice-ansi@npm:1.0.2"
dependencies:
grapheme-splitter: ^1.0.4
checksum: b66e05fa25e42172a4f32aa8a5372203227f1b0e1c5d7879f45217a0fd0a5506a0f53f677ee532b8c92e53ce8404fdd60ba4cd83cfb806a19ad6472e6b75170b
languageName: node
linkType: hard
"@arkecosystem/core-api@npm:^3.0.0-next, @arkecosystem/core-api@npm:^3.0.0-next.31, @arkecosystem/core-api@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-api@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@hapi/boom": ^9.0.0
"@hapi/hapi": ^20.0.3
"@hapi/hoek": ^9.1.0
joi: ^17.3.0
nanomatch: ^1.2.13
node-cache: ^5.0.2
rate-limiter-flexible: ^1.1.6
semver: ^6.3.0
checksum: b792b4f8b1a405441f1b3ace1bcb70246e03bef95b4412a6c16e684ae4f74faaa47055f9ad94ba0111ac2ab222390ca5713229b4f1462ab06483472d37894294
languageName: node
linkType: hard
"@arkecosystem/core-blockchain@npm:^3.0.0-next.31, @arkecosystem/core-blockchain@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-blockchain@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-state": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
joi: ^17.3.0
xstate: ^4.8.0
checksum: e4673ed8c73e254ad362cb279e7b058bdfc5e523e7db8c2685c8861cbf7c6a10dd3ddc12aa27440f95e82855cf1523edd8c2c05bda878057552d04c1afa8a350
languageName: node
linkType: hard
"@arkecosystem/core-cli@npm:^3.0.0-next, @arkecosystem/core-cli@npm:^3.0.0-next.31":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-cli@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@arkecosystem/utils": ^1.3.0
boxen: ^4.2.0
cli-table3: ^0.6.0
dayjs: ^1.8.17
env-paths: ^2.2.0
envfile: ^5.0.0
execa: ^3.4.0
fast-levenshtein: ^2.0.6
fs-extra: ^8.1.0
inversify: ^5.0.1
joi: ^17.3.0
kleur: ^4.0.0
latest-version: ^5.1.0
listr: ^0.14.3
nodejs-tail: ^1.1.0
ora: ^4.0.3
prompts: ^2.4.0
read-last-lines: ^1.7.1
reflect-metadata: ^0.1.13
semver: ^6.3.0
type-fest: ^0.16.0
yargs-parser: ^20.0.0
checksum: 5272ee200f8582041f0dce3cec3a5aa50898ef9fc93dee977c6e3a993b826cd8ec91a240d53faf73d10a4849abb10a8a7297b9055725d119fc9af08e05833705
languageName: node
linkType: hard
"@arkecosystem/core-database@npm:^3.0.0-next, @arkecosystem/core-database@npm:^3.0.0-next.31, @arkecosystem/core-database@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-database@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@arkecosystem/utils": ^1.3.0
dayjs: ^1.8.17
joi: ^17.3.0
pg: ^8.2.1
reflect-metadata: ^0.1.13
typeorm: 0.2.25
checksum: 6fded6664062231cd74a6a807e43f8caa5023dac274025309e9affaad31a6f524bd30989680609c4f297bd9f21f5f8f68924068c1cb526586fc58dd891e112e0
languageName: node
linkType: hard
"@arkecosystem/core-forger@npm:^3.0.0-next.31, @arkecosystem/core-forger@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-forger@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-p2p": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
joi: ^17.3.0
node-forge: ^0.10.0
wif: ^2.0.6
checksum: 7443d9021f52fed786774350a3303d68cebb2a2fcaf9b37c21c4711ceaedebdf77a3e65944883f6b3d5cd050e228b2edd25fbdc49974006a71584a77d06bf410
languageName: node
linkType: hard
"@arkecosystem/core-kernel@npm:^3.0.0-next, @arkecosystem/core-kernel@npm:^3.0.0-next.31":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-kernel@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/crypto": ^3.0.0-next.31
"@arkecosystem/utils": ^1.3.0
"@pm2/io": ^4.3.5
chalk: ^4.0.0
cron: ^1.7.2
dayjs: ^1.8.17
deepmerge: ^4.2.2
env-paths: ^2.2.0
fs-extra: ^8.1.0
functional-red-black-tree: ^1.0.1
import-fresh: ^3.2.1
inversify: ^5.0.1
ipaddr.js: ^2.0.0
joi: ^17.3.0
log-process-errors: ^5.0.3
nanomatch: ^1.2.13
nsfw: ^2.0.0
reflect-metadata: ^0.1.13
semver: ^6.3.0
type-fest: ^0.16.0
checksum: f2564caf445a2de783c28a140cbabcf27a7e4a05ee88208c81cf491ff8c881c4bacc68b0dbea783e31093fcd6a742e39b57bd971abf3fa64fc2ea526200a8c2f
languageName: node
linkType: hard
"@arkecosystem/core-logger-pino@npm:^3.0.0-next.31, @arkecosystem/core-logger-pino@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-logger-pino@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
chalk: ^4.0.0
joi: ^17.3.0
pino: ^6.0.0
pino-pretty: ^4.0.0
pump: ^3.0.0
readable-stream: ^3.4.0
rotating-file-stream: ^2.1.5
split2: ^3.1.1
checksum: 95eeda566a5e0af3de9a4e83058870a8f3988f3cf7b90b8e853c06c460134bb4b3f7dca58ecefad5e1de4048089671b4582579d810471c3e3310139c4c8f7f7c
languageName: node
linkType: hard
"@arkecosystem/core-magistrate-api@npm:^3.0.0-next.31, @arkecosystem/core-magistrate-api@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-magistrate-api@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-api": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-magistrate-crypto": ^3.0.0-next.31
"@arkecosystem/core-magistrate-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@hapi/boom": ^9.0.0
"@hapi/hapi": ^20.0.3
joi: ^17.3.0
checksum: af5b1f541bdc22d87538699cd5445ad809cbf65031f51b814f677b9cf9fcbb7fcefe485a411932d7b610075a9f15c8067097ef0d399b5bf8c9019ae4b73dae33
languageName: node
linkType: hard
"@arkecosystem/core-magistrate-crypto@npm:^3.0.0-next.31, @arkecosystem/core-magistrate-crypto@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-magistrate-crypto@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
bytebuffer: ^5.0.1
checksum: a20fa807f4a9da2948f8bbb97a2c5611987cdb337d9a8d3098b740aba7d277fd02dad0e8e1061b5af97d9a6909f3f2d64b5b493cefdb5a22a06587f983aa261e
languageName: node
linkType: hard
"@arkecosystem/core-magistrate-transactions@npm:^3.0.0-next.31, @arkecosystem/core-magistrate-transactions@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-magistrate-transactions@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-magistrate-crypto": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
checksum: 232c4ea2b48a844c3d456a8ad9f842c5581af95bfff4aeab69f0a4c6f8a2b3c16f252336c000af5a4adee9a04d857a48b937ef9a763925f8c2423d6cddf741be
languageName: node
linkType: hard
"@arkecosystem/core-manager@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-manager@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-cli": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@hapi/basic": ^6.0.0
"@hapi/hapi": ^20.0.3
"@hapist/json-rpc": ^0.2.0
"@hapist/whitelist": ^0.1.0
"@sindresorhus/df": ^3.1.1
archiver: ^5.2.0
argon2: ^0.26.2
better-sqlite3: ^7.1.2
dayjs: ^1.9.6
execa: ^3.4.0
fs-extra: ^8.1.0
got: ^11.8.1
hapi-auth-bearer-token: ^6.1.6
joi: ^17.3.0
latest-version: ^5.1.0
lodash.clonedeep: ^4.5.0
public-ip: ^4.0.3
systeminformation: ^5.6.20
typeorm: 0.2.25
checksum: ff278c2148171e1df924ed8eb2ccd69f84522132018a2bcc09a587b01d2cb205f751156ce2e6542df8ab81d2e8aec435ae4a29280237be9083ecba1991eb6de2
languageName: node
linkType: hard
"@arkecosystem/core-p2p@npm:^3.0.0-next.31, @arkecosystem/core-p2p@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-p2p@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-state": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@hapi/boom": ^9.0.0
"@hapi/bounce": 2.x.x
"@hapi/hapi": ^20.0.3
"@hapi/hoek": 9.x.x
"@hapi/sntp": ^4.0.0
"@hapi/teamwork": 5.x.x
dayjs: ^1.8.17
delay: ^4.3.0
ip: ^1.1.5
ipaddr.js: ^2.0.0
joi: ^17.3.0
pluralize: ^8.0.0
pretty-ms: ^7.0.0
protobufjs: ~6.10.1
rate-limiter-flexible: ^1.1.0
semver: ^6.3.0
ws: 7.x
checksum: 4e6fbf72150cf7d1c505859857ef4d659aea2f0368a12da5c5bf8f194f4426fde0d94b628eadc21aed3a43f86eac3479bf1d6c93803d363df73ae13ffe419486
languageName: node
linkType: hard
"@arkecosystem/core-snapshots@npm:^3.0.0-next.31, @arkecosystem/core-snapshots@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-snapshots@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
bytebuffer: ^5.0.1
fs-extra: ^8.1.0
joi: ^17.3.0
msgpack-lite: ^0.1.26
ora: ^4.0.3
pg-query-stream: ^3.0.4
pluralize: ^8.0.0
typeorm: 0.2.25
xcase: ^2.0.1
checksum: 8932549c709a2b0d25a1f7312be5cd258bf002f675bb9a4739f12307f53109b64bc5a58c8acdf38f5b74cfb78b662c8e7d70fcf3c32da7670ce9c7a5b6ec27f0
languageName: node
linkType: hard
"@arkecosystem/core-state@npm:^3.0.0-next, @arkecosystem/core-state@npm:^3.0.0-next.31, @arkecosystem/core-state@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-state@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
immutable: ^4.0.0-rc.12
joi: ^17.3.0
checksum: 5f3e3ee1a4e1408e97e1c7ea40103e43b55ead8541b5afecf2a282beceb261da70f4709bff7bfc4f36e5178b1b77fd8a9a6bf7ed8b8f2698152b8b5a388dd08c
languageName: node
linkType: hard
"@arkecosystem/core-test-framework@npm:^3.0.0-next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-test-framework@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core": ^3.0.0-next.31
"@arkecosystem/core-api": ^3.0.0-next.31
"@arkecosystem/core-blockchain": ^3.0.0-next.31
"@arkecosystem/core-cli": ^3.0.0-next.31
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-forger": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-magistrate-crypto": ^3.0.0-next.31
"@arkecosystem/core-p2p": ^3.0.0-next.31
"@arkecosystem/core-state": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
bip39: ^3.0.2
bs58: ^4.0.1
bytebuffer: ^5.0.1
chance: ^1.1.3
env-paths: ^2.2.0
fast-memoize: ^2.5.1
fs-extra: ^8.1.0
got: ^11.8.1
jest-extended: ^0.11.2
lodash.clonedeep: ^4.5.0
tmp: ^0.2.0
xstate: ^4.8.0
checksum: 4931ac44f6e1d871c9e78ca93dace576672ba352d106b865726ab1f5cc8ce7d36f391dd11c0a914dc0103ad787b7387ec107d8c154f3f6613d2352554700a5b2
languageName: node
linkType: hard
"@arkecosystem/core-transaction-pool@npm:^3.0.0-next, @arkecosystem/core-transaction-pool@npm:^3.0.0-next.31, @arkecosystem/core-transaction-pool@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-transaction-pool@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@types/better-sqlite3": ^5.4.0
"@types/fs-extra": ^8.0.1
better-sqlite3: ^7.1.2
bytebuffer: ^5.0.1
fs-extra: ^8.1.0
joi: ^17.3.0
checksum: 3591b49b95408c46ad115c7d34279f8892f02326530595be349d424c398a10f36bbb1ab5c7dc0c9e62bc72b6e0be6239eb5c4aaea3a1bd0f4e863f6bfcf071b9
languageName: node
linkType: hard
"@arkecosystem/core-transactions@npm:^3.0.0-next, @arkecosystem/core-transactions@npm:^3.0.0-next.31, @arkecosystem/core-transactions@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-transactions@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
checksum: 9c3f20a212ca1aa70b7fcefe26739a104f8f24346a05c2bb073e58e56fbcca43347c8a348c4c2f585644d5c7a1671eb7fa34cb9a88569c179d567e803b3f0862
languageName: node
linkType: hard
"@arkecosystem/core-webhooks@npm:^3.0.0-next.31, @arkecosystem/core-webhooks@npm:next":
version: 3.0.0-next.31
resolution: "@arkecosystem/core-webhooks@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@hapi/boom": ^9.0.0
"@hapi/hapi": ^20.0.3
fs-extra: ^8.1.0
joi: ^17.3.0
lowdb: ^1.0.0
uuid: ^8.0.0
checksum: b337cb8679db3d61cdf99eba430f8cbab6860dd6f9f8bcbcb4e6a33b3622bd3c81bb6cb438efa102437c37e351c9b586b071ab775f7006055b7583182fe468d3
languageName: node
linkType: hard
"@arkecosystem/core@npm:^3.0.0-next, @arkecosystem/core@npm:^3.0.0-next.31":
version: 3.0.0-next.31
resolution: "@arkecosystem/core@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/core-api": ^3.0.0-next.31
"@arkecosystem/core-blockchain": ^3.0.0-next.31
"@arkecosystem/core-cli": ^3.0.0-next.31
"@arkecosystem/core-database": ^3.0.0-next.31
"@arkecosystem/core-forger": ^3.0.0-next.31
"@arkecosystem/core-kernel": ^3.0.0-next.31
"@arkecosystem/core-logger-pino": ^3.0.0-next.31
"@arkecosystem/core-magistrate-api": ^3.0.0-next.31
"@arkecosystem/core-magistrate-transactions": ^3.0.0-next.31
"@arkecosystem/core-p2p": ^3.0.0-next.31
"@arkecosystem/core-snapshots": ^3.0.0-next.31
"@arkecosystem/core-state": ^3.0.0-next.31
"@arkecosystem/core-transaction-pool": ^3.0.0-next.31
"@arkecosystem/core-transactions": ^3.0.0-next.31
"@arkecosystem/core-webhooks": ^3.0.0-next.31
"@arkecosystem/crypto": ^3.0.0-next.31
"@arkecosystem/utils": ^1.3.0
argon2: ^0.26.2
bip39: ^3.0.2
boxen: ^4.2.0
dayjs: ^1.8.35
env-paths: ^2.2.0
envfile: ^5.0.0
execa: ^3.4.0
fs-extra: ^8.1.0
got: ^11.8.1
joi: ^17.3.0
kleur: ^4.1.1
ngrok: ^3.2.5
prompts: ^2.4.0
tar: ^6.0.0
type-fest: ^0.16.0
wif: ^2.0.6
peerDependencies:
pm2: 4.5.0
bin:
ark: bin/run
checksum: e1d2cc1930bd1ef0d1ebd612084df951742dd1e720d370a3f54ed65e0002a7a26b9c26ae70dcaf79d929e5c917e7095dedc5d70a4a470f1b7481305736843ff0
languageName: node
linkType: hard
"@arkecosystem/crypto-identities@npm:^1.2.0":
version: 1.2.0
resolution: "@arkecosystem/crypto-identities@npm:1.2.0"
dependencies:
bcrypto: ^5.3.0
bstring: ^0.3.9
fast-memoize: ^2.5.1
wif: ^2.0.6
checksum: 76c8f6b1162bb09a982f9dbfe7627118e137d4dd4dc73adfa960bf3b3fc2eec9843c77bce64e55cc20b89d5cae4dd0e125755763e529abacfc1efa4ae6823c89
languageName: node
linkType: hard
"@arkecosystem/crypto-networks@npm:^1.0.0":
version: 1.1.0
resolution: "@arkecosystem/crypto-networks@npm:1.1.0"
checksum: 795910daa842800e770f97f90ac40ede98c3b0e49b68f7c4de973189def15a06d1c33b9dad671c7888b280da1264d9e46488873aa5f56bcd48cf4652a8680a01
languageName: node
linkType: hard
"@arkecosystem/crypto@npm:^3.0.0-next, @arkecosystem/crypto@npm:^3.0.0-next.31":
version: 3.0.0-next.31
resolution: "@arkecosystem/crypto@npm:3.0.0-next.31"
dependencies:
"@arkecosystem/crypto-identities": ^1.2.0
"@arkecosystem/crypto-networks": ^1.0.0
"@arkecosystem/utils": ^1.3.0
ajv: ^6.10.2
ajv-keywords: ^3.4.1
bcrypto: ^5.3.0
bip32: ^2.0.6
bip39: ^3.0.2
browserify-aes: ^1.2.0
bstring: ^0.3.9
buffer-xor: ^2.0.2
builtin-modules: ^3.1.0
bytebuffer: ^5.0.1
dayjs: ^1.8.17
deepmerge: ^4.2.2
fast-memoize: ^2.5.1
ipaddr.js: ^2.0.0
lodash.get: ^4.4.2
lodash.set: ^4.3.2
checksum: f3fc08f6620de1a28413e54018c26a42a095b898b0747337beb244449a37d62c6e7e90fb7598a678ff9e544dc6d81910fa51b5ae9f8d3b0070a9a8616b5b5ccd
languageName: node
linkType: hard
"@arkecosystem/utils@npm:^1.3.0":
version: 1.3.0
resolution: "@arkecosystem/utils@npm:1.3.0"
dependencies:
"@hapi/bourne": ^2.0.0
deepmerge: ^4.2.2
fast-copy: ^2.1.0
fast-deep-equal: ^3.1.3
fast-sort: ^2.2.0
type-fest: ^0.17.0
checksum: a2513a6f9504faef78a46058d7fe7f5b36dfb0afe3dfb864644676dacbc8a45c5fb1cb8dd9c1df0556e970a9336e37c812544b9745ecc07104455a8c0b6e98ca
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": ^7.14.5
checksum: 0adbe4f8d91586f764f524e57631f582ab988b2ef504391a5d89db29bfaaf7c67c237798ed4a249b6a2d7135852cf94d3d07ce6b9739dd1df1f271d5ed069565
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.14.5":
version: 7.14.7
resolution: "@babel/compat-data@npm:7.14.7"
checksum: dcf7a72cb650206857a98cce1ab0973e67689f19afc3b30cabff6dbddf563f188d54d3b3f92a70c6bc1feb9049d8b2e601540e1d435b6866c77bffad0a441c9f
languageName: node
linkType: hard
"@babel/core@npm:7.14.8, @babel/core@npm:^7.1.0, @babel/core@npm:^7.7.2, @babel/core@npm:^7.7.5":
version: 7.14.8
resolution: "@babel/core@npm:7.14.8"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.14.8
"@babel/helper-compilation-targets": ^7.14.5
"@babel/helper-module-transforms": ^7.14.8
"@babel/helpers": ^7.14.8
"@babel/parser": ^7.14.8
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
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
checksum: 4c9a5b21020791659095a514f11c81159a96477037682183f23a1084732e0e3dbb58986e14ebf3a03a31230a75d8b2e1d23644ca84204eddf70018cba983035f
languageName: node
linkType: hard
"@babel/generator@npm:^7.14.8, @babel/generator@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/generator@npm:7.14.8"
dependencies:
"@babel/types": ^7.14.8
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 0fdec7e1991fc3973d241e4c5e7d69f8c4ab063359695e6a019e4a5a0139a768ddce91d0705d7bd8a28f3befb5abde68355e19745fcdb45c40a26cf53d879191
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-compilation-targets@npm:7.14.5"
dependencies:
"@babel/compat-data": ^7.14.5
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.16.6
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 02df2c6d1bc5f2336f380945aa266a3a65d057c5eff6be667235a8005048b21f69e4aaebc8e43ccfc2fb406688383ae8e572f257413febf244772e5e7af5fd7f
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-function-name@npm:7.14.5"
dependencies:
"@babel/helper-get-function-arity": ^7.14.5
"@babel/template": ^7.14.5
"@babel/types": ^7.14.5
checksum: fd8ffa82f7622b6e9a6294fb3b98b42e743ab2a8e3c329367667a960b5b98b48bc5ebf8be7308981f1985b9f3c69e1a3b4a91c8944ae97c31803240da92fb3c8
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-get-function-arity@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: a60779918b677a35e177bb4f46babfd54e9790587b6a4f076092a9eff2a940cbeacdeb10c94331b26abfe838769554d72293d16df897246cfccd1444e5e27cb7
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-hoist-variables@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 35af58eebffca10988de7003e044ce2d27212aea72ac6d2c4604137da7f1e193cc694d8d60805d0d0beaf3d990f6f2dcc2622c52e3d3148e37017a29cacf2e56
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.14.5":
version: 7.14.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.14.7"
dependencies:
"@babel/types": ^7.14.5
checksum: 1768b849224002d7a8553226ad73e1e957fb6184b68234d5df7a45cf8e4453ed1208967c1cace1a4d973b223ddc881d105e372945ec688f09485dff0e8ed6180
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-imports@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: b98279908698a50a22634e683924cb25eb93edf1bf28ac65691dfa82d7a1a4dae4e6b12b8ef9f9a50171ca484620bce544f270873c53505d8a45364c5b665c0c
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-module-transforms@npm:7.14.8"
dependencies:
"@babel/helper-module-imports": ^7.14.5
"@babel/helper-replace-supers": ^7.14.5
"@babel/helper-simple-access": ^7.14.8
"@babel/helper-split-export-declaration": ^7.14.5
"@babel/helper-validator-identifier": ^7.14.8
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
checksum: 527b3383c40788b04c815da1ded4ac8cdc21e3356517fc81bcd03b319c1b58901638bb641a6f0cd00f493c7a31a8ae7123213d59c1d4f57cec32185b5d9f79a2
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-optimise-call-expression@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: c7af558c63eb5449bf2249f1236d892ed54a400cb6c721756cde573b996c12c64dee6b57fa18ad1a0025d152e6f689444f7ea32997a1d56e1af66c3eda18843d
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: fe20e90a24d02770a60ebe80ab9f0dfd7258503cea8006c71709ac9af1aa3e47b0de569499673f11ea6c99597f8c0e4880ae1d505986e61101b69716820972fe
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-replace-supers@npm:7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.14.5
"@babel/helper-optimise-call-expression": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: 35d33cfe473f9fb5cc1110ee259686179ecd07e00e07d9eb03de998e47f49d59fc2e183cf6be0793fd6bec24510b893415e52ace93ae940f94663c4a02c6fbd0
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-simple-access@npm:7.14.8"
dependencies:
"@babel/types": ^7.14.8
checksum: c1dae88c956154c854bb1679d19b9158ff1c8241329a4a70026ec16c594b9637e73647e5a1a0f9b7c47b2309201f633c259fb41d06a800496283debce6a67fab
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-split-export-declaration@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 93437025a33747bfd37d6d5a9cdac8f4b6b3e5c0c53c0e24c5444575e731ea64fd5471a51a039fd74ff3378f916ea2d69d9f10274d253ed6f832952be2fd65f0
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-validator-identifier@npm:7.14.8"
checksum: f21ad9a9f0a66a02e0e5f62d505cbeb9e01a7ac5bd34be0af9f916f0b6d8d40718efaf51b656b41759e3454703090b4d386105f1f97f6598ee5a3f8eb98adc6a
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-option@npm:7.14.5"
checksum: 1b25c34a5cb3d8602280f33b9ab687d2a77895e3616458d0f70ddc450ada9b05e342c44f322bc741d51b252e84cff6ec44ae93d622a3354828579a643556b523
languageName: node
linkType: hard
"@babel/helpers@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helpers@npm:7.14.8"
dependencies:
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
checksum: 2f1358c19fc1ee744c183f81b499b73977da7d3d3f7a881d457b235754394a503e4717353f29364bd5feb7fa406b1edd1aab92b5ab0765dba945fb559eeb1c65
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": ^7.14.5
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 4e4b22fb886c939551d73307de16232c186fdb4d8ec8f514541b058feaecdba5234788a0740ca5bcd28777f4108596c39ac4b7463684c63b3812f6071e3fb88f
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.5, @babel/parser@npm:^7.14.8, @babel/parser@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/parser@npm:7.14.8"
bin:
parser: ./bin/babel-parser.js
checksum: 9e532b2bbe690fff8cdaf8c25cfecb684ebe9e9d50d30cd775852dd711649ddb964368b26fda55786404fadf500f944043fb0f731b765104ad857d677dd29ce5
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.14.5
resolution: "@babel/plugin-syntax-typescript@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5447d13b31aeeeaa5c2b945e60a598642dedca480f11d3232b0927aeb6a6bb8201a0025f509bc23851da4bf126f69b0522790edbd58f4560f0a4984cabd0d126
languageName: node
linkType: hard
"@babel/template@npm:^7.14.5, @babel/template@npm:^7.3.3":
version: 7.14.5
resolution: "@babel/template@npm:7.14.5"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/parser": ^7.14.5
"@babel/types": ^7.14.5
checksum: 4939199c5b1ca8940e14c87f30f4fab5f35c909bef88447131075349027546927b4e3e08e50db5c2db2024f2c6585a4fe571c739c835ac980f7a4ada2dd8a623
languageName: node
linkType: hard
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.14.5, @babel/traverse@npm:^7.14.8, @babel/traverse@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/traverse@npm:7.14.8"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.14.8
"@babel/helper-function-name": ^7.14.5
"@babel/helper-hoist-variables": ^7.14.5
"@babel/helper-split-export-declaration": ^7.14.5
"@babel/parser": ^7.14.8
"@babel/types": ^7.14.8
debug: ^4.1.0
globals: ^11.1.0
checksum: f635f99b1b09dfe60105bb162103346f78e058351231e33e9c11a17fabf6d56b4f87837ad14a0f82242c6dd0b97fecd90064735f1e11d47b7429a1c3e99a5ece
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.14.5, @babel/types@npm:^7.14.8, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3":
version: 7.14.8
resolution: "@babel/types@npm:7.14.8"
dependencies:
"@babel/helper-validator-identifier": ^7.14.8
to-fast-properties: ^2.0.0
checksum: d4ebd2e0e52f05cbcb3ded434d9fb49db73c239d98c4f7bd27beaf32fcd7c81aa30618237e87d53505d5e65fd20d688cb4237b6fa927a04831129a6044f2e4b5
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: ^6.12.4
debug: ^4.1.1
espree: ^7.3.0
globals: ^13.9.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^3.13.1
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3
languageName: node
linkType: hard
"@ethersproject/abi@npm:5.4.0, @ethersproject/abi@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/abi@npm:5.4.0"
dependencies:
"@ethersproject/address": ^5.4.0
"@ethersproject/bignumber": ^5.4.0
"@ethersproject/bytes": ^5.4.0
"@ethersproject/constants": ^5.4.0
"@ethersproject/hash": ^5.4.0
"@ethersproject/keccak256": ^5.4.0
"@ethersproject/logger": ^5.4.0
"@ethersproject/properties": ^5.4.0
"@ethersproject/strings": ^5.4.0
checksum: b299aab954e43da5abfaf1ba015405c1d9f9d87f83e1c37d09c4c402bb98abac9aedecdb52fd17b1389a272caddc8341a9410babb6536a56e0b77004b5839173
languageName: node
linkType: hard
"@ethersproject/abstract-provider@npm:5.4.0, @ethersproject/abstract-provider@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/abstract-provider@npm:5.4.0"
dependencies:
"@ethersproject/bignumber": ^5.4.0
"@ethersproject/bytes": ^5.4.0
"@ethersproject/logger": ^5.4.0
"@ethersproject/networks": ^5.4.0
"@ethersproject/properties": ^5.4.0
"@ethersproject/transactions": ^5.4.0
"@ethersproject/web": ^5.4.0
checksum: 4e87d8c8c549ebb9cd0d579945267eac0d40c34922af610667ab1a2a143abb330c51c1b09da95d39787e323941db4120c10c0e5ffd13591fd2d7dfd083210765
languageName: node
linkType: hard
"@ethersproject/abstract-signer@npm:5.4.0, @ethersproject/abstract-signer@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/abstract-signer@npm:5.4.0"
dependencies:
"@ethersproject/abstract-provider": ^5.4.0
"@ethersproject/bignumber": ^5.4.0
"@ethersproject/bytes": ^5.4.0
"@ethersproject/logger": ^5.4.0
"@ethersproject/properties": ^5.4.0
checksum: 6499aa3537eae53d5dd6bee80e15cf72c6f56882d716e24b1ba2167ec57d1f14304d166d8320e246d20b8529dcbd33ede8960b457e27fcdd6c0b94a84dd25c2e
languageName: node
linkType: hard
"@ethersproject/address@npm:5.4.0, @ethersproject/address@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/address@npm:5.4.0"
dependencies:
"@ethersproject/bignumber": ^5.4.0
"@ethersproject/bytes": ^5.4.0
"@ethersproject/keccak256": ^5.4.0
"@ethersproject/logger": ^5.4.0
"@ethersproject/rlp": ^5.4.0
checksum: c7ad0cffa86a24c5e4c176d4c08b99a35551abd72520ccc55de9c94ef45737f6082c2a784586360915f17802008154c995990f8f35b0f6c2b6738b80b766c0a4
languageName: node
linkType: hard
"@ethersproject/base64@npm:5.4.0, @ethersproject/base64@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/base64@npm:5.4.0"
dependencies:
"@ethersproject/bytes": ^5.4.0
checksum: 40e14debc4534005cc8a1594074dab272c49d84fb3a6b4c0eedd6144211312a8ad97009603381e90f6ddfeaf5f227c0e8e56d6753562981a9ae6ccfcb8430d4e
languageName: node
linkType: hard
"@ethersproject/basex@npm:5.4.0, @ethersproject/basex@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/basex@npm:5.4.0"
dependencies:
"@ethersproject/bytes": ^5.4.0
"@ethersproject/properties": ^5.4.0
checksum: 0a364834f29b27bb04c91698cd2612f07f96f73709af20d99a4b96babc75baf770e84ac01fa2c6b34f0ee3e04c35566d601c6cf1933973844c1a0b785f6f0da5
languageName: node
linkType: hard
"@ethersproject/bignumber@npm:5.4.1, @ethersproject/bignumber@npm:^5.4.0":
version: 5.4.1
resolution: "@ethersproject/bignumber@npm:5.4.1"
dependencies:
"@ethersproject/bytes": ^5.4.0
"@ethersproject/logger": ^5.4.0
bn.js: ^4.11.9
checksum: ba154500635ed4545ba2e2a06ed1b4f07738956e131f1a4c0fc706f8eed80d89c9cc93fdf1a71f95e4f943e29faf8b3644cc1226c51f9280d26dc6783089f976
languageName: node
linkType: hard
"@ethersproject/bytes@npm:5.4.0, @ethersproject/bytes@npm:^5.4.0":
version: 5.4.0
resolution: "@ethersproject/bytes@npm:5.4.0"
dependencies:
"@ethersproject/logger": ^5.4.0
checksum: be8678ec713858e6d944defc78b9950ab83a9cde22c51ea2658ee4a5aa176f1ce9c36dd6630a2a17dcf6bd098b1b33b7b1d3b8fe2edb8840af4028567ca68775
languageName: node
linkType: hard
"@ethersproject/constants@npm:5.4.0, @ethersproject/constants@npm:^5.4.0":