-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6341 lines (5683 loc) · 222 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@autonomys/auto-dag-data@npm:^1.0.12, @autonomys/auto-dag-data@npm:^1.0.5":
version: 1.0.12
resolution: "@autonomys/auto-dag-data@npm:1.0.12"
dependencies:
"@ipld/dag-pb": "npm:^4.1.2"
"@peculiar/webcrypto": "npm:^1.5.0"
"@webbuf/blake3": "npm:^3.0.26"
"@webbuf/fixedbuf": "npm:^3.0.26"
"@webbuf/webbuf": "npm:^3.0.26"
fflate: "npm:^0.8.2"
multiformats: "npm:^13.2.2"
protobufjs: "npm:^7.4.0"
protons: "npm:^7.6.0"
protons-runtime: "npm:^5.5.0"
checksum: 10c0/b0bed5c2e8af5aef3f0697b207c37ba6aaa72d02b4dc51973a09e4411a8b9b0ff36e490ffc402cd56599803352cc1c63c22b8dfdea6da4aa7eb852322e2ba933
languageName: node
linkType: hard
"@autonomys/auto-utils@npm:^1.0.12":
version: 1.0.12
resolution: "@autonomys/auto-utils@npm:1.0.12"
dependencies:
"@polkadot/api": "npm:^14.3.1"
"@polkadot/extension-dapp": "npm:^0.56.2"
fs: "npm:^0.0.1-security"
checksum: 10c0/36473509d6b78ea5e00b28b7fc0c774f8c91fe4438f6b01a881bf291d1bfc9045fda7c673360f99263eaa315663093e881cec8746b0ff3abf257d677ad0cc1a3
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-string-parser@npm:7.25.9"
checksum: 10c0/7244b45d8e65f6b4338a6a68a8556f2cb161b782343e97281a5f2b9b93e420cad0d9f5773a59d79f61d0c448913d06f6a2358a87f2e203cf112e3c5b53522ee6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.25.9":
version: 7.25.9
resolution: "@babel/helper-validator-identifier@npm:7.25.9"
checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
languageName: node
linkType: hard
"@babel/parser@npm:^7.20.15":
version: 7.26.3
resolution: "@babel/parser@npm:7.26.3"
dependencies:
"@babel/types": "npm:^7.26.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/48f736374e61cfd10ddbf7b80678514ae1f16d0e88bc793d2b505d73d9b987ea786fc8c2f7ee8f8b8c467df062030eb07fd0eb2168f0f541ca1f542775852cad
languageName: node
linkType: hard
"@babel/types@npm:^7.26.3":
version: 7.26.3
resolution: "@babel/types@npm:7.26.3"
dependencies:
"@babel/helper-string-parser": "npm:^7.25.9"
"@babel/helper-validator-identifier": "npm:^7.25.9"
checksum: 10c0/966c5242c5e55c8704bf7a7418e7be2703a0afa4d19a8480999d5a4ef13d095dd60686615fe5983cb7593b4b06ba3a7de8d6ca501c1d78bdd233a10d90be787b
languageName: node
linkType: hard
"@chainsafe/is-ip@npm:^2.0.1":
version: 2.0.2
resolution: "@chainsafe/is-ip@npm:2.0.2"
checksum: 10c0/0bb8b9d0babe583642d31ffafad603ac5e5dc48884266feae57479d81f4e81ef903628527d81b39d5305657a957bf435bd2ef38b98a4526a7aab366febf793ad
languageName: node
linkType: hard
"@chainsafe/netmask@npm:^2.0.0":
version: 2.0.0
resolution: "@chainsafe/netmask@npm:2.0.0"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.1"
checksum: 10c0/a9069e52b0a1470b00c88d3fb16ff4fe14274e5055770faab974b29f7bc69ebf76172775461da1e88b7fe73539a9228f6af0406253d46e987193ddf21a073da1
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 10c0/eb42729851adca56d19a08e48d5a1e95efd2a32c55ae0323de8119052be0510d4b7a1611f2abcbf28c044a6c11e6b7d38f99fccdad7429300c37a8ea5fb95b44
languageName: node
linkType: hard
"@colors/colors@npm:1.6.0, @colors/colors@npm:^1.6.0":
version: 1.6.0
resolution: "@colors/colors@npm:1.6.0"
checksum: 10c0/9328a0778a5b0db243af54455b79a69e3fb21122d6c15ef9e9fcc94881d8d17352d8b2b2590f9bdd46fac5c2d6c1636dcfc14358a20c70e22daf89e1a759b629
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 10c0/05c5368c13b662ee4c122c7bfbe5dc0b613416672a829f3e78bc49a357a197e0218d6e74e7c66cfcd04e15a179acab080bd3c69658c9fbefd0e1ccd950a07fc6
languageName: node
linkType: hard
"@dabh/diagnostics@npm:^2.0.2":
version: 2.0.3
resolution: "@dabh/diagnostics@npm:2.0.3"
dependencies:
colorspace: "npm:1.1.x"
enabled: "npm:2.0.x"
kuler: "npm:^2.0.0"
checksum: 10c0/a5133df8492802465ed01f2f0a5784585241a1030c362d54a602ed1839816d6c93d71dde05cf2ddb4fd0796238c19774406bd62fa2564b637907b495f52425fe
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0":
version: 4.4.1
resolution: "@eslint-community/eslint-utils@npm:4.4.1"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10c0/2aa0ac2fc50ff3f234408b10900ed4f1a0b19352f21346ad4cc3d83a1271481bdda11097baa45d484dd564c895e0762a27a8240be7a256b3ad47129e96528252
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.4":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.6.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
languageName: node
linkType: hard
"@eslint/js@npm:8.57.1":
version: 8.57.1
resolution: "@eslint/js@npm:8.57.1"
checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
dependencies:
"@humanwhocodes/object-schema": "npm:^2.0.3"
debug: "npm:^4.3.1"
minimatch: "npm:^3.0.5"
checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.3":
version: 2.0.3
resolution: "@humanwhocodes/object-schema@npm:2.0.3"
checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
languageName: node
linkType: hard
"@ipld/dag-pb@npm:^4.1.2, @ipld/dag-pb@npm:^4.1.3":
version: 4.1.3
resolution: "@ipld/dag-pb@npm:4.1.3"
dependencies:
multiformats: "npm:^13.1.0"
checksum: 10c0/c785c8e291c7c417618b43381a57672feda61e1fed8aaf3365e306f29b31d4770cf54f68a4de4fac03775a768d93c2be11690a008e0856851a5b64a4b7d27efc
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: "npm:^5.1.2"
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: "npm:^7.0.1"
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: "npm:^8.1.0"
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.0.3":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:0.3.9":
version: 0.3.9
resolution: "@jridgewell/trace-mapping@npm:0.3.9"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.0.3"
"@jridgewell/sourcemap-codec": "npm:^1.4.10"
checksum: 10c0/fa425b606d7c7ee5bfa6a31a7b050dd5814b4082f318e0e4190f991902181b4330f43f4805db1dd4f2433fd0ed9cc7a7b9c2683f1deeab1df1b0a98b1e24055b
languageName: node
linkType: hard
"@jsdoc/salty@npm:^0.2.1":
version: 0.2.8
resolution: "@jsdoc/salty@npm:0.2.8"
dependencies:
lodash: "npm:^4.17.21"
checksum: 10c0/ace2a0ef346e49e9573623544939e1b07906c2775d1027113e10666997c9a50397059b3212e233a053f9d8a118818b847f1690177017b1126408d9bcc7054938
languageName: node
linkType: hard
"@keyv/serialize@npm:*":
version: 1.0.1
resolution: "@keyv/serialize@npm:1.0.1"
dependencies:
buffer: "npm:^6.0.3"
checksum: 10c0/948fadc632f6050b67cb8ea664192a98d7743015e1b449d383addacbce371414b9cd7129b33ab36d5d81b558744ab0a56c2753b287e7c4f5b2c46401c486cbd0
languageName: node
linkType: hard
"@keyvhq/core@npm:^2.1.1":
version: 2.1.1
resolution: "@keyvhq/core@npm:2.1.1"
dependencies:
json-buffer: "npm:~3.0.1"
checksum: 10c0/1d8c84af8d1c1d2e763be918f602d8715ac8ae6b0c403076b55c39071e5d1505ce642d14249aa0e95146b1846f6f326e4c8a5b8d4873b892d403501cad305f2f
languageName: node
linkType: hard
"@keyvhq/sql@npm:^2.1.6":
version: 2.1.6
resolution: "@keyvhq/sql@npm:2.1.6"
dependencies:
sql-ts: "npm:7"
checksum: 10c0/7d889e810566493f4076abda72a2899bdcfee7cd3e39be6e8679a2f8eb184f4874524c7457e57e7a24946f70d0f50eb94178901ad2abf0a91c368306f52e2ca4
languageName: node
linkType: hard
"@keyvhq/sqlite@npm:^2.1.6":
version: 2.1.6
resolution: "@keyvhq/sqlite@npm:2.1.6"
dependencies:
"@keyvhq/sql": "npm:^2.1.6"
"@vscode/sqlite3": "npm:~5.1.2"
pify: "npm:~5.0.0"
checksum: 10c0/28f152fbf2a03cf9d595ec1b90faae89f705874b90b734559c268bee500144f5f5e59ffa6d90e69300e12ce77fbba3883525f099093a5c30479bb666c5420c7b
languageName: node
linkType: hard
"@leichtgewicht/ip-codec@npm:^2.0.1":
version: 2.0.5
resolution: "@leichtgewicht/ip-codec@npm:2.0.5"
checksum: 10c0/14a0112bd59615eef9e3446fea018045720cd3da85a98f801a685a818b0d96ef2a1f7227e8d271def546b2e2a0fe91ef915ba9dc912ab7967d2317b1a051d66b
languageName: node
linkType: hard
"@libp2p/interface@npm:^2.2.1":
version: 2.2.1
resolution: "@libp2p/interface@npm:2.2.1"
dependencies:
"@multiformats/multiaddr": "npm:^12.2.3"
it-pushable: "npm:^3.2.3"
it-stream-types: "npm:^2.0.1"
multiformats: "npm:^13.1.0"
progress-events: "npm:^1.0.0"
uint8arraylist: "npm:^2.4.8"
checksum: 10c0/0eeff44808dd3a96effd44fee805efa3ef8db8b70b0cbd3e3c467949d26f0b1fd9887297f487764083b451907262b88a6e14f8b722df139e5feeda9266c21602
languageName: node
linkType: hard
"@libp2p/logger@npm:^5.0.1":
version: 5.1.4
resolution: "@libp2p/logger@npm:5.1.4"
dependencies:
"@libp2p/interface": "npm:^2.2.1"
"@multiformats/multiaddr": "npm:^12.2.3"
interface-datastore: "npm:^8.3.0"
multiformats: "npm:^13.1.0"
weald: "npm:^1.0.2"
checksum: 10c0/784266ce2171b93ea35ee43db8c0c405afcf46195ed2364193d8dff23ef80096b13ccca64c9d3c5838fe010281f01d6afb0b131d224ed94ab3854f5f7b657ea6
languageName: node
linkType: hard
"@multiformats/dns@npm:^1.0.3":
version: 1.0.6
resolution: "@multiformats/dns@npm:1.0.6"
dependencies:
"@types/dns-packet": "npm:^5.6.5"
buffer: "npm:^6.0.3"
dns-packet: "npm:^5.6.1"
hashlru: "npm:^2.3.0"
p-queue: "npm:^8.0.1"
progress-events: "npm:^1.0.0"
uint8arrays: "npm:^5.0.2"
checksum: 10c0/ab0323ec9e697fb345a47b68e9e6ee5e2def2f00e99467ac6c53c9b6f613cff2dc2b792e9270cfe385500b6cdcc565a1c6e6e7871c584a6bc49366441bc4fa7f
languageName: node
linkType: hard
"@multiformats/multiaddr@npm:^12.2.3":
version: 12.3.4
resolution: "@multiformats/multiaddr@npm:12.3.4"
dependencies:
"@chainsafe/is-ip": "npm:^2.0.1"
"@chainsafe/netmask": "npm:^2.0.0"
"@multiformats/dns": "npm:^1.0.3"
multiformats: "npm:^13.0.0"
uint8-varint: "npm:^2.0.1"
uint8arrays: "npm:^5.0.0"
checksum: 10c0/0fd1522e5e6e7ab5aa288188b33f958c866f32c754e8ad9270b232ee0842282a4572c15a7fd5480e7c35c237b53ab19862129a87acbf09aa38ea47a5619ae700
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0":
version: 1.7.0
resolution: "@noble/curves@npm:1.7.0"
dependencies:
"@noble/hashes": "npm:1.6.0"
checksum: 10c0/3317ec9b7699d2476707a89ceb3ddce60e69bac287561a31dd533669408633e093860fea5067eb9c54e5a7ced0705da1cba8859b6b1e0c48d3afff55fe2e77d0
languageName: node
linkType: hard
"@noble/hashes@npm:1.6.0":
version: 1.6.0
resolution: "@noble/hashes@npm:1.6.0"
checksum: 10c0/e7e75898257fb36d933935fcdf1cc67ca7c083eb7b2411aa57fde7eb494c2cea0bec03686462032e25d5b0e1e4ab7357d1afb6718f6a68515db1f392141e9f14
languageName: node
linkType: hard
"@noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3":
version: 1.6.1
resolution: "@noble/hashes@npm:1.6.1"
checksum: 10c0/27643cd8b551bc933b57cc29aa8c8763d586552fc4c3e06ecf7897f55be3463c0c9dff7f6ebacd88e5ce6d0cdb5415ca4874d0cf4359b5ea4a85be21ada03aab
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": "npm:2.0.5"
run-parallel: "npm:^1.1.9"
checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": "npm:2.1.5"
fastq: "npm:^1.6.0"
checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@peculiar/asn1-schema@npm:^2.3.13, @peculiar/asn1-schema@npm:^2.3.8":
version: 2.3.13
resolution: "@peculiar/asn1-schema@npm:2.3.13"
dependencies:
asn1js: "npm:^3.0.5"
pvtsutils: "npm:^1.3.5"
tslib: "npm:^2.6.2"
checksum: 10c0/98020f09a1b412e16bd5cb96ecb35a4da8043d90f4911eaa8b565cba7c437ae39544f928f8c112d5926f260bff78a184c165f60f153409c94b5224527ea355b0
languageName: node
linkType: hard
"@peculiar/json-schema@npm:^1.1.12":
version: 1.1.12
resolution: "@peculiar/json-schema@npm:1.1.12"
dependencies:
tslib: "npm:^2.0.0"
checksum: 10c0/202132c66dcc6b6aca5d0af971c015be2e163da2f7f992910783c5d39c8a7db59b6ec4f4ce419459a1f954b7e1d17b6b253f0e60072c1b3d254079f4eaebc311
languageName: node
linkType: hard
"@peculiar/webcrypto@npm:^1.5.0":
version: 1.5.0
resolution: "@peculiar/webcrypto@npm:1.5.0"
dependencies:
"@peculiar/asn1-schema": "npm:^2.3.8"
"@peculiar/json-schema": "npm:^1.1.12"
pvtsutils: "npm:^1.3.5"
tslib: "npm:^2.6.2"
webcrypto-core: "npm:^1.8.0"
checksum: 10c0/4f6f24b2c52c2155b9c569b6eb1d57954cb5f7bd2764a50cdaed7aea17a6dcf304b75b87b57ba318756ffec8179a07d9a76534aaf77855912b838543e5ff8983
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
languageName: node
linkType: hard
"@pkgr/core@npm:^0.1.0":
version: 0.1.1
resolution: "@pkgr/core@npm:0.1.1"
checksum: 10c0/3f7536bc7f57320ab2cf96f8973664bef624710c403357429fbf680a5c3b4843c1dbd389bb43daa6b1f6f1f007bb082f5abcb76bb2b5dc9f421647743b71d3d8
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider-proxy@npm:^0.1.0":
version: 0.1.0
resolution: "@polkadot-api/json-rpc-provider-proxy@npm:0.1.0"
checksum: 10c0/e4b621fbbba5ae035f36932ce2ef6024d157a1612e26d8838ba6b92a78cd4718f4f12baa55ec7c700d213f8ecbe6e14569152ba3254b341b677b9e616c749f59
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider@npm:0.0.1, @polkadot-api/json-rpc-provider@npm:^0.0.1":
version: 0.0.1
resolution: "@polkadot-api/json-rpc-provider@npm:0.0.1"
checksum: 10c0/90dc86693e7ef742c50484f4374d4b4f0eb7b5f7f618cf96a3dfed866fd18edf19132fc750b2944e8300d83c5601343f3876cbe60cd6bb1086301361d682ebd8
languageName: node
linkType: hard
"@polkadot-api/metadata-builders@npm:0.3.2":
version: 0.3.2
resolution: "@polkadot-api/metadata-builders@npm:0.3.2"
dependencies:
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/ac536e8d5dea4c4e241839750a46d003a86e6149428dbf9bdb794907547fdab219d38c805ba5fa0ea7150a0083c214866e28d7c2ec10621be97d2f8f8b013edf
languageName: node
linkType: hard
"@polkadot-api/observable-client@npm:^0.3.0":
version: 0.3.2
resolution: "@polkadot-api/observable-client@npm:0.3.2"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.3.2"
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
peerDependencies:
"@polkadot-api/substrate-client": 0.1.4
rxjs: ">=7.8.0"
checksum: 10c0/9f93fab03c37af0483f5c8487ec5250d366eb401a2c9744c014dfb4c7aa524645ae71f6b0e60761e2bca89bdcd862c119e4ac0e798123d8ee9f037eb2f4aaef3
languageName: node
linkType: hard
"@polkadot-api/substrate-bindings@npm:0.6.0":
version: 0.6.0
resolution: "@polkadot-api/substrate-bindings@npm:0.6.0"
dependencies:
"@noble/hashes": "npm:^1.3.1"
"@polkadot-api/utils": "npm:0.1.0"
"@scure/base": "npm:^1.1.1"
scale-ts: "npm:^1.6.0"
checksum: 10c0/6c5d2d4f1120e95b3fb0207ea186e74302b9075671132d62d94d6abcb8b38fe081b8514384c744c3630615caa474764ebdd18968bef73d0c29203946941f1d99
languageName: node
linkType: hard
"@polkadot-api/substrate-client@npm:^0.1.2":
version: 0.1.4
resolution: "@polkadot-api/substrate-client@npm:0.1.4"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.1"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/7c9138ce52745f7e5f365f35d8caf3c192aee405ee576492eab8c47f5e9d09547a6141cc455ba21e69cf9f0f813fe6f5bcb0763342c33435a7678432961713db
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.1.0":
version: 0.1.0
resolution: "@polkadot-api/utils@npm:0.1.0"
checksum: 10c0/9b24522a30d0519df2d2bbfc65f7dbc94233950f829c4a6b042e02cc43b70c0ec43a7d06056cd7084d09e32d7c42caa2695732d25f673a31430391bed116fcae
languageName: node
linkType: hard
"@polkadot/api-augment@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/api-augment@npm:14.3.1"
dependencies:
"@polkadot/api-base": "npm:14.3.1"
"@polkadot/rpc-augment": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-augment": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/2cb756c6b2d2e9249ef8706725ee83644e2bde323a916ade1976a653521c2680bcffef25455aeb58627ac48492b99abb89a0aeac75cfa26837fda5dde4011548
languageName: node
linkType: hard
"@polkadot/api-augment@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/api-augment@npm:15.0.1"
dependencies:
"@polkadot/api-base": "npm:15.0.1"
"@polkadot/rpc-augment": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-augment": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/390c438399d07cfc685a49e6782bebd8a7696669a3a216b5b084b608f1ecab0e9941ceed688b4581e6ee42e227b9239187677db105c3026e52d8ccd5f1c59ccc
languageName: node
linkType: hard
"@polkadot/api-base@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/api-base@npm:14.3.1"
dependencies:
"@polkadot/rpc-core": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/8e04af99ce4594fbbf934706ff3b77a54da9c13feaa5563c50de4add2c3f6763164a558fa123af26a9d208ca5689eeedec2574b5cd12a9d83cf958f21571212f
languageName: node
linkType: hard
"@polkadot/api-base@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/api-base@npm:15.0.1"
dependencies:
"@polkadot/rpc-core": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/a1c8cbf2c750003271f777cb4d8e016cd2dc76fe781eb091dc544bf6bcd2c25e76c111b2eb67208302ea50e705a569757d4e609f95e103877e7ee6e3abc391cb
languageName: node
linkType: hard
"@polkadot/api-derive@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/api-derive@npm:14.3.1"
dependencies:
"@polkadot/api": "npm:14.3.1"
"@polkadot/api-augment": "npm:14.3.1"
"@polkadot/api-base": "npm:14.3.1"
"@polkadot/rpc-core": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/7939b7580dfe4469b72f1d2b006ab6a3158ab65c779b4e42e94e3d7b449b04bad0f995b18bc4dbb28f2d03e64762a93ad6391faa3c2809ae0993d0973bdd9dc3
languageName: node
linkType: hard
"@polkadot/api-derive@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/api-derive@npm:15.0.1"
dependencies:
"@polkadot/api": "npm:15.0.1"
"@polkadot/api-augment": "npm:15.0.1"
"@polkadot/api-base": "npm:15.0.1"
"@polkadot/rpc-core": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/d426c9b0be65f18198a4aa6458de6eb21b59ce8f404946233b5279b42c3da3b8b0bad36de1258aa60aa59176cca0bf04a79d28a9a3a61b53b7315c8e5ade40e3
languageName: node
linkType: hard
"@polkadot/api@npm:14.3.1, @polkadot/api@npm:^14.3.1":
version: 14.3.1
resolution: "@polkadot/api@npm:14.3.1"
dependencies:
"@polkadot/api-augment": "npm:14.3.1"
"@polkadot/api-base": "npm:14.3.1"
"@polkadot/api-derive": "npm:14.3.1"
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/rpc-augment": "npm:14.3.1"
"@polkadot/rpc-core": "npm:14.3.1"
"@polkadot/rpc-provider": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-augment": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/types-create": "npm:14.3.1"
"@polkadot/types-known": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
eventemitter3: "npm:^5.0.1"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/5c893cef918e9914c833c03b5f9fea86673cd2e50f8bdccb913177119c83124b036d69cdc8f52fd8d999b43f2da26a5260a8812cc516cba21b3fa727bd5e8023
languageName: node
linkType: hard
"@polkadot/api@npm:15.0.1, @polkadot/api@npm:^15.0.1":
version: 15.0.1
resolution: "@polkadot/api@npm:15.0.1"
dependencies:
"@polkadot/api-augment": "npm:15.0.1"
"@polkadot/api-base": "npm:15.0.1"
"@polkadot/api-derive": "npm:15.0.1"
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/rpc-augment": "npm:15.0.1"
"@polkadot/rpc-core": "npm:15.0.1"
"@polkadot/rpc-provider": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-augment": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/types-create": "npm:15.0.1"
"@polkadot/types-known": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
eventemitter3: "npm:^5.0.1"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/7f6726d10b24bdb47c52efb02fd7fd7b23cda03f7837a7dbb4e5e5e4661562a93d7933c52edbfd840cac436ed40db8ef1896eb8c9657b6a4d6658147657f7ebb
languageName: node
linkType: hard
"@polkadot/extension-dapp@npm:^0.56.2":
version: 0.56.2
resolution: "@polkadot/extension-dapp@npm:0.56.2"
dependencies:
"@polkadot/extension-inject": "npm:0.56.2"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
tslib: "npm:^2.8.1"
peerDependencies:
"@polkadot/api": "*"
"@polkadot/util": "*"
"@polkadot/util-crypto": "*"
checksum: 10c0/884228d456c71145beaee7cde6bef6c7c71ed0d6c5d228f171d46d38fa59a44592c2d7f7b0a93c56aa3c7aa14e3d6402be8b473a36ecdc88ee4608af543c2b04
languageName: node
linkType: hard
"@polkadot/extension-inject@npm:0.56.2":
version: 0.56.2
resolution: "@polkadot/extension-inject@npm:0.56.2"
dependencies:
"@polkadot/api": "npm:^14.3.1"
"@polkadot/rpc-provider": "npm:^14.3.1"
"@polkadot/types": "npm:^14.3.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
"@polkadot/x-global": "npm:^13.2.3"
tslib: "npm:^2.8.1"
peerDependencies:
"@polkadot/api": "*"
"@polkadot/util": "*"
checksum: 10c0/7ac1f01ea1df2fb09e1837e77a339ddf50a561de3ca564523b3e5e7d7f7008a4648a349e5a4204146bd50b92ac058680c34682bbabedba050234db39f22131b1
languageName: node
linkType: hard
"@polkadot/keyring@npm:^13.2.3":
version: 13.2.3
resolution: "@polkadot/keyring@npm:13.2.3"
dependencies:
"@polkadot/util": "npm:13.2.3"
"@polkadot/util-crypto": "npm:13.2.3"
tslib: "npm:^2.8.0"
peerDependencies:
"@polkadot/util": 13.2.3
"@polkadot/util-crypto": 13.2.3
checksum: 10c0/0f8adca69888107cdff2acfbd8eeea87e7db86dda79ed9438f192cc05cf6fbf983483c4f630848c52e168574c57168875903c4d49b79a0e0d27e2c3b9b3046e4
languageName: node
linkType: hard
"@polkadot/networks@npm:13.2.3, @polkadot/networks@npm:^13.2.3":
version: 13.2.3
resolution: "@polkadot/networks@npm:13.2.3"
dependencies:
"@polkadot/util": "npm:13.2.3"
"@substrate/ss58-registry": "npm:^1.51.0"
tslib: "npm:^2.8.0"
checksum: 10c0/1ff4b329c05c6c8fadbaf733432392bf6e73f9151df869a5416228d21906e46f5643eae600046025aace635867b9458042865c0b847a8c2c65af76a98c4ba605
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/rpc-augment@npm:14.3.1"
dependencies:
"@polkadot/rpc-core": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/9a55690656c3e8154745439e1bc7f0e9d29af19d20374724bc9f21400540efe6f5d94bb18faf5336061e16f86afdeecf0d5f3e7b0ccfad5b87f602c5633d4743
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/rpc-augment@npm:15.0.1"
dependencies:
"@polkadot/rpc-core": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/e57719cf897c0ef5f2d94f1cb121dfafb694a496b83369596cfa462fde4ba44f47144a0da4870fc4ad5777167821f686374aebea88716da754ce61c7d51c9d22
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/rpc-core@npm:14.3.1"
dependencies:
"@polkadot/rpc-augment": "npm:14.3.1"
"@polkadot/rpc-provider": "npm:14.3.1"
"@polkadot/types": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/439223156cb243e5907655057367178562cdc4a30f960d67a61705b638cc017814055e0086a28e4b06b9b88e382302a7c17b1020b5a09f29dc37233ed2d7ffde
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/rpc-core@npm:15.0.1"
dependencies:
"@polkadot/rpc-augment": "npm:15.0.1"
"@polkadot/rpc-provider": "npm:15.0.1"
"@polkadot/types": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/a1d1e49e3a5fa19b1ea76a25632f9e7021581d023428089d81381a1471ae973e93e4958973568552f65d7d46f70554d98e5dc74e11022ea172005519d6231f6d
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:14.3.1, @polkadot/rpc-provider@npm:^14.3.1":
version: 14.3.1
resolution: "@polkadot/rpc-provider@npm:14.3.1"
dependencies:
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-support": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
"@polkadot/x-fetch": "npm:^13.2.3"
"@polkadot/x-global": "npm:^13.2.3"
"@polkadot/x-ws": "npm:^13.2.3"
"@substrate/connect": "npm:0.8.11"
eventemitter3: "npm:^5.0.1"
mock-socket: "npm:^9.3.1"
nock: "npm:^13.5.5"
tslib: "npm:^2.8.0"
dependenciesMeta:
"@substrate/connect":
optional: true
checksum: 10c0/cab0c873be695678f4e2086dd0e7ba3e79e3aa20f447f941a60f160d3a8f52bfa340c54b10e0e0cd8bdcdd57d8effcab230d31b9bec1e6432aa92b19e881f41c
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/rpc-provider@npm:15.0.1"
dependencies:
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-support": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
"@polkadot/x-fetch": "npm:^13.2.3"
"@polkadot/x-global": "npm:^13.2.3"
"@polkadot/x-ws": "npm:^13.2.3"
"@substrate/connect": "npm:0.8.11"
eventemitter3: "npm:^5.0.1"
mock-socket: "npm:^9.3.1"
nock: "npm:^13.5.5"
tslib: "npm:^2.8.0"
dependenciesMeta:
"@substrate/connect":
optional: true
checksum: 10c0/7e568694d340d78c74b7fd96d57c9f8c89de45c421c67c41307026c898eebb8075064764c64cc37bdf538b8adb916e9b05753519c2fa7ff0f0190ad938a4ebb2
languageName: node
linkType: hard
"@polkadot/types-augment@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/types-augment@npm:14.3.1"
dependencies:
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/56192ce0bd656343196c46cea114ddf61488307ac8e4c7d578f6e41b877fc258765f1408ebe408ca9a0f7f64b16f661776fd76bb215f2d74c9690e4d4855de72
languageName: node
linkType: hard
"@polkadot/types-augment@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types-augment@npm:15.0.1"
dependencies:
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/44c8f7e68e5544888b415e065622f1d784d8ba73a0cf40f141d93896f3cc30170b00a2b19320fd44fc8d0f0244ff6f0d298401056c1ea1868ccc6250e4bb6f9f
languageName: node
linkType: hard
"@polkadot/types-codec@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/types-codec@npm:14.3.1"
dependencies:
"@polkadot/util": "npm:^13.2.3"
"@polkadot/x-bigint": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/e60353aa1218b460167d97447a7edbab527cceeb505e8206c065890622db5e95c6b1e703c69d75fd2dad410c8c598b0f721995f5d1af357420b461038526641b
languageName: node
linkType: hard
"@polkadot/types-codec@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types-codec@npm:15.0.1"
dependencies:
"@polkadot/util": "npm:^13.2.3"
"@polkadot/x-bigint": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/798c818ee26c97666128f7abaa650e3862518216d9cebb5de42d26448f2fba868bea9b515cfd5cbd3d8e75386f1992d571440e0b0e1e0692d903e660ce178809
languageName: node
linkType: hard
"@polkadot/types-create@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/types-create@npm:14.3.1"
dependencies:
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/18b07ebe2140010426f9c9c6648bd4e56911fc52465356c89b9969572db1c97a2f80bea985eb6f90d07bf1ca38b690050e36dc725ec5fcf4edeef85eabbe381a
languageName: node
linkType: hard
"@polkadot/types-create@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types-create@npm:15.0.1"
dependencies:
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/c73197950065051a726725c2c89f5c56d2451ca999a34ba997920676e9ec339c3926ae9a1152bf675fa2996125a197f21d80e06311d34542471f3861c8aca161
languageName: node
linkType: hard
"@polkadot/types-known@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/types-known@npm:14.3.1"
dependencies:
"@polkadot/networks": "npm:^13.2.3"
"@polkadot/types": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/types-create": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/c290b290b4856c77b15bc29a177caeaa6ce408b48c36a6c1fdf38160c5573a95bdd1476a1ad085dbe0853684deb4cd4c49fa67ee2d120809de8ec6e8005d08eb
languageName: node
linkType: hard
"@polkadot/types-known@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types-known@npm:15.0.1"
dependencies:
"@polkadot/networks": "npm:^13.2.3"
"@polkadot/types": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/types-create": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/f35c536cb0f115f4005c1b370e696ec7ffef433f00afbb3b9a54247c97e822dd1f89dd71430b488b7c6bb9f496c2264713de668adfa21fa148216d89be05cb35
languageName: node
linkType: hard
"@polkadot/types-support@npm:14.3.1":
version: 14.3.1
resolution: "@polkadot/types-support@npm:14.3.1"
dependencies:
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/fec80615ee0cdfa9d70a9e73d598de5b58f01f76557ac9c0060f9036bac1dd3695184ce8e4a81461a83988da2c28e5a8248a941fc891b2606a681f1ef218adfa
languageName: node
linkType: hard
"@polkadot/types-support@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types-support@npm:15.0.1"
dependencies:
"@polkadot/util": "npm:^13.2.3"
tslib: "npm:^2.8.0"
checksum: 10c0/fa1a4133d4da179e1c15da8ecc7f129dd44f6108fd294e9b0c13fa960e0210218c51d134aa7624d04109141621c5bf0a09ae9199a57dbdddae3871bf904a079c
languageName: node
linkType: hard
"@polkadot/types@npm:14.3.1, @polkadot/types@npm:^14.3.1":
version: 14.3.1
resolution: "@polkadot/types@npm:14.3.1"
dependencies:
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/types-augment": "npm:14.3.1"
"@polkadot/types-codec": "npm:14.3.1"
"@polkadot/types-create": "npm:14.3.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/1cf0ad0f5f51cce1f9f3a5a694669fe327e3b8ec2c277dd7f0be74c7df1147b8713651c3a99ad8ac9a8c125a7681c2d6d05b6a7b0eaaa96f96a52bd4c61a8a47
languageName: node
linkType: hard
"@polkadot/types@npm:15.0.1":
version: 15.0.1
resolution: "@polkadot/types@npm:15.0.1"
dependencies:
"@polkadot/keyring": "npm:^13.2.3"
"@polkadot/types-augment": "npm:15.0.1"
"@polkadot/types-codec": "npm:15.0.1"
"@polkadot/types-create": "npm:15.0.1"
"@polkadot/util": "npm:^13.2.3"
"@polkadot/util-crypto": "npm:^13.2.3"
rxjs: "npm:^7.8.1"
tslib: "npm:^2.8.0"
checksum: 10c0/f653c154953d5c535ea46f5ddebe95c8c8c6f71b43ca63afcb63952e88ac12255b4e72ff5b51ff870a0d05136ebc27583598c9bdc71b1e8f8ee68af2948a89ec
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:13.2.3, @polkadot/util-crypto@npm:^13.2.3":
version: 13.2.3
resolution: "@polkadot/util-crypto@npm:13.2.3"
dependencies:
"@noble/curves": "npm:^1.3.0"
"@noble/hashes": "npm:^1.3.3"
"@polkadot/networks": "npm:13.2.3"
"@polkadot/util": "npm:13.2.3"
"@polkadot/wasm-crypto": "npm:^7.4.1"