-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathyarn.lock
3239 lines (2913 loc) · 104 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: 6
cacheKey: 8
"@adraffy/ens-normalize@npm:1.10.1":
version: 1.10.1
resolution: "@adraffy/ens-normalize@npm:1.10.1"
checksum: 0836f394ea256972ec19a0b5e78cb7f5bcdfd48d8a32c7478afc94dd53ae44c04d1aa2303d7f3077b4f3ac2323b1f557ab9188e8059978748fdcd83e04a80dcc
languageName: node
linkType: hard
"@adraffy/ens-normalize@npm:^1.10.1":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: b2911269e3e0ec6396a2e5433a99e0e1f9726befc6c167994448cd0e53dbdd0be22b4835b4f619558b568ed9aa7312426b8fa6557a13999463489daa88169ee5
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/aix-ppc64@npm:0.24.2"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm64@npm:0.24.2"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-arm@npm:0.24.2"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/android-x64@npm:0.24.2"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-arm64@npm:0.24.2"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/darwin-x64@npm:0.24.2"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-arm64@npm:0.24.2"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/freebsd-x64@npm:0.24.2"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm64@npm:0.24.2"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-arm@npm:0.24.2"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ia32@npm:0.24.2"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-loong64@npm:0.24.2"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-mips64el@npm:0.24.2"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-ppc64@npm:0.24.2"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-riscv64@npm:0.24.2"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-s390x@npm:0.24.2"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/linux-x64@npm:0.24.2"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-arm64@npm:0.24.2"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/netbsd-x64@npm:0.24.2"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-arm64@npm:0.24.2"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/openbsd-x64@npm:0.24.2"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/sunos-x64@npm:0.24.2"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-arm64@npm:0.24.2"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-ia32@npm:0.24.2"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.24.2":
version: 0.24.2
resolution: "@esbuild/win32-x64@npm:0.24.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 05df4f2538b3b0f998ea4c1cd34574d0feba216fa5d4ccaef0187d12abf82eafe6021cec8b49f9bb4d90f2ba4582ccc581e72986a5fcf4176ae0cfeb04cf52ec
languageName: node
linkType: hard
"@noble/curves@npm:1.2.0":
version: 1.2.0
resolution: "@noble/curves@npm:1.2.0"
dependencies:
"@noble/hashes": 1.3.2
checksum: bb798d7a66d8e43789e93bc3c2ddff91a1e19fdb79a99b86cd98f1e5eff0ee2024a2672902c2576ef3577b6f282f3b5c778bebd55761ddbb30e36bf275e83dd0
languageName: node
linkType: hard
"@noble/curves@npm:1.7.0, @noble/curves@npm:~1.7.0":
version: 1.7.0
resolution: "@noble/curves@npm:1.7.0"
dependencies:
"@noble/hashes": 1.6.0
checksum: e220b704f1e516f326fff985e794e840a267f5542e1388737142b08177672ebc41b460b5a5bf636d7622c68e8ae719bc042ccd8aed16dc14311450a94b5f2a05
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0":
version: 1.3.0
resolution: "@noble/curves@npm:1.3.0"
dependencies:
"@noble/hashes": 1.3.3
checksum: b65342ee66c4a440eee2978524412eabba9a9efdd16d6370e15218c6a7d80bddf35e66bb57ed52c0dfd32cb9a717b439ab3a72db618f1a0066dfebe3fd12a421
languageName: node
linkType: hard
"@noble/curves@npm:^1.6.0, @noble/curves@npm:~1.6.0":
version: 1.6.0
resolution: "@noble/curves@npm:1.6.0"
dependencies:
"@noble/hashes": 1.5.0
checksum: 258f3feb2a6098cf35521562ecb7d452fd728e8a008ff9f1ef435184f9d0c782ceb8f7b7fa8df3317c3be7a19f53995ee124cd05c8080b130bd42e3cb072f24d
languageName: node
linkType: hard
"@noble/hashes@npm:1.3.2":
version: 1.3.2
resolution: "@noble/hashes@npm:1.3.2"
checksum: fe23536b436539d13f90e4b9be843cc63b1b17666a07634a2b1259dded6f490be3d050249e6af98076ea8f2ea0d56f578773c2197f2aa0eeaa5fba5bc18ba474
languageName: node
linkType: hard
"@noble/hashes@npm:1.3.3, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3":
version: 1.3.3
resolution: "@noble/hashes@npm:1.3.3"
checksum: 8a6496d1c0c64797339bc694ad06cdfaa0f9e56cd0c3f68ae3666cfb153a791a55deb0af9c653c7ed2db64d537aa3e3054629740d2f2338bb1dcb7ab60cd205b
languageName: node
linkType: hard
"@noble/hashes@npm:1.5.0, @noble/hashes@npm:^1.5.0, @noble/hashes@npm:~1.5.0":
version: 1.5.0
resolution: "@noble/hashes@npm:1.5.0"
checksum: 9cc031d5c888c455bfeef76af649b87f75380a4511405baea633c1e4912fd84aff7b61e99716f0231d244c9cfeda1fafd7d718963e6a0c674ed705e9b1b4f76b
languageName: node
linkType: hard
"@noble/hashes@npm:1.6.0":
version: 1.6.0
resolution: "@noble/hashes@npm:1.6.0"
checksum: 07729b80108d2a9b862eb4e070d4f78ca7ee86b9a9c13a4f7c338ba47a15d4386dd283235da71f21ad515fa9f0b9429fc3da39d2f2b4a50e2442212d14cfd4a9
languageName: node
linkType: hard
"@noble/hashes@npm:1.6.1, @noble/hashes@npm:~1.6.0":
version: 1.6.1
resolution: "@noble/hashes@npm:1.6.1"
checksum: 57c62f65ee217c0293b4321b547792aa6d79812bfe70a7d62dc83e0f936cc677b14ed981b4e88cf8fdad37cd6d3a0cbd3bd0908b0728adc9daf066e678be8901
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: ^7.3.5
checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f
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: 3dcfa50dfa9c1b5654d97d818ae85042facfdf47b71c418f069d664eba149c6be10eb02a8e8de011ce8753a813e214fff195f45f55851b8cfc7f60138fe9dfb2
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: 1f315bdadcba7def7145011132e6127b983c6f91f976be217ad7d555bb96a67f3a270fe4a46e427531822c5d54d353d84a6439d112a99cdfc07013d3b662ee3c
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": 0.6.0
"@polkadot-api/utils": 0.1.0
checksum: e37a664ac2582048a0dd0357b378349f2165eb2f0902f7bc3aa7ec7b84735cba2b4103d36169089671c422caab30af00467cf2866c1456fc668f57ff1c8d3b55
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": 0.3.2
"@polkadot-api/substrate-bindings": 0.6.0
"@polkadot-api/utils": 0.1.0
peerDependencies:
"@polkadot-api/substrate-client": 0.1.4
rxjs: ">=7.8.0"
checksum: a559a815c11fe29c5ce1d69e132bbfb451abd1de3fa2c701fa60777388c3730fb86acd7f6e3d9580ae50a148c742d4562aca90070c04c70fa9d45f9d5148b448
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": ^1.3.1
"@polkadot-api/utils": 0.1.0
"@scure/base": ^1.1.1
scale-ts: ^1.6.0
checksum: c752d52dbea2b332357652b5475297ee6fa2f1ab8adffa7bd697522df5a42a0c358aec6f558523fd6f38ab20ab54ed0bda284c0c0424d917c1c68ef435dde4a4
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": 0.0.1
"@polkadot-api/utils": 0.1.0
checksum: b975bdf030523ea7620ef58b50ca1d258266656f040a95fa7875a59535a935b05d23d893090fc1216b0e119327b2df329a1aaca84c8893f5924b9536d2ed8473
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.1.0":
version: 0.1.0
resolution: "@polkadot-api/utils@npm:0.1.0"
checksum: 55f39cf6949e54b763fc67e5132ae7d1095bf28f8413895dcec7e5778d9fe345b1ce9fe08f127c84f79fb9aedd51f045aa8ed84b2a72f4217047a91d2ecb4c27
languageName: node
linkType: hard
"@polkadot/api-augment@npm:15.3.1, @polkadot/api-augment@npm:^15.2.1":
version: 15.3.1
resolution: "@polkadot/api-augment@npm:15.3.1"
dependencies:
"@polkadot/api-base": 15.3.1
"@polkadot/rpc-augment": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-augment": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: d9b26ece6445159f6159ecadb6f8f4defa3084dca1c85e08af4c6e4c64acd226de802fbbc852d72686737027c9ea52d14dffe6cfd0da12eea1b4a572291d89b7
languageName: node
linkType: hard
"@polkadot/api-base@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/api-base@npm:15.3.1"
dependencies:
"@polkadot/rpc-core": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/util": ^13.3.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 06fc9bdae4e0644fc5f4ecc11c5bf61958d5f871fcef4d8d3625cf8101fdbe10a58dfa0974d10b943fd8b40ed6131a4073be59be419c6d9aa04b0626cc8b22e2
languageName: node
linkType: hard
"@polkadot/api-cli@npm:^0.62.1":
version: 0.62.1
resolution: "@polkadot/api-cli@npm:0.62.1"
dependencies:
"@polkadot/api": ^15.2.1
"@polkadot/api-augment": ^15.2.1
"@polkadot/keyring": ^13.3.1
"@polkadot/types": ^15.2.1
"@polkadot/util": ^13.3.1
"@polkadot/util-crypto": ^13.3.1
tslib: ^2.8.1
yargs: ^17.7.2
bin:
polkadot-js-api: runcli.mjs
checksum: c01a79a787f77f8ad03476a9fe79116f28c34d91091eb0589c6d4444fd5f3268f142363cdd4b588851b57261f1301a52f20cc3f035257fa743028d8722abcac7
languageName: node
linkType: hard
"@polkadot/api-derive@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/api-derive@npm:15.3.1"
dependencies:
"@polkadot/api": 15.3.1
"@polkadot/api-augment": 15.3.1
"@polkadot/api-base": 15.3.1
"@polkadot/rpc-core": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/util": ^13.3.1
"@polkadot/util-crypto": ^13.3.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: d2bd33f255a71d7909ca6aaf91a1241d45bff635bf0ca08971745a6cb03a7437b8c719116097757c57b311f6e321ce789c2b4ed8c347574d806a916e1a4c759a
languageName: node
linkType: hard
"@polkadot/api@npm:15.3.1, @polkadot/api@npm:^15.2.1, @polkadot/api@npm:^15.3.1":
version: 15.3.1
resolution: "@polkadot/api@npm:15.3.1"
dependencies:
"@polkadot/api-augment": 15.3.1
"@polkadot/api-base": 15.3.1
"@polkadot/api-derive": 15.3.1
"@polkadot/keyring": ^13.3.1
"@polkadot/rpc-augment": 15.3.1
"@polkadot/rpc-core": 15.3.1
"@polkadot/rpc-provider": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-augment": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/types-create": 15.3.1
"@polkadot/types-known": 15.3.1
"@polkadot/util": ^13.3.1
"@polkadot/util-crypto": ^13.3.1
eventemitter3: ^5.0.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 37132b93d4652c7453c6e0fdfa924da3e934fb11196746b52c840b82143f0b60bc79608bd0881f3ead1185acd353ecf5539465b2b4ea41b4555a3737b9b323db
languageName: node
linkType: hard
"@polkadot/keyring@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/keyring@npm:13.3.1"
dependencies:
"@polkadot/util": 13.3.1
"@polkadot/util-crypto": 13.3.1
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.3.1
"@polkadot/util-crypto": 13.3.1
checksum: 0ab49b5b54376a92b34343cf277003e7a13d0125be3195c32b09a09044368a37289f6522eeb2e91b6ef22666ef287de93a6e060e1fdd9957afd698d35f0d48bd
languageName: node
linkType: hard
"@polkadot/networks@npm:13.3.1, @polkadot/networks@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/networks@npm:13.3.1"
dependencies:
"@polkadot/util": 13.3.1
"@substrate/ss58-registry": ^1.51.0
tslib: ^2.8.0
checksum: 6497f190894bd4fd46c2edfeb2b74ffee17338352c5f25fb1f7ea0293f7ccb5fbb846c08b26d64956db9e3cf41ac7ee5a5c50938f6a64a021d6cfc25f79e5c19
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/rpc-augment@npm:15.3.1"
dependencies:
"@polkadot/rpc-core": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: 80ade9829e11c561a9f704d27cce5fe6016d8489ce4369e3ae7830c8ae6ea91d5b0fdb5a88745379c5adc5ce8b1a62a0f7ecf1aabab71f98b933a063a5472461
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/rpc-core@npm:15.3.1"
dependencies:
"@polkadot/rpc-augment": 15.3.1
"@polkadot/rpc-provider": 15.3.1
"@polkadot/types": 15.3.1
"@polkadot/util": ^13.3.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 5b27cbb882f4ed317774f945521bd4b1c3134b3e92a03f8c5f40d61ea34d712df01d59d70929e3d008936f79a4d0f3831dc80035856b598c80762fadfbeb3acc
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/rpc-provider@npm:15.3.1"
dependencies:
"@polkadot/keyring": ^13.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-support": 15.3.1
"@polkadot/util": ^13.3.1
"@polkadot/util-crypto": ^13.3.1
"@polkadot/x-fetch": ^13.3.1
"@polkadot/x-global": ^13.3.1
"@polkadot/x-ws": ^13.3.1
"@substrate/connect": 0.8.11
eventemitter3: ^5.0.1
mock-socket: ^9.3.1
nock: ^13.5.5
tslib: ^2.8.1
dependenciesMeta:
"@substrate/connect":
optional: true
checksum: 445c2379037adc58f2c409ddb95cd50e46cfb095c20ec2bb710266f19a371380c2e1c8d990ab928a7ef5fd9eaadf1030e0609c5f73325a36cc5f9d732d99021b
languageName: node
linkType: hard
"@polkadot/types-augment@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/types-augment@npm:15.3.1"
dependencies:
"@polkadot/types": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: 7a7d0fd2e5d098d974f737147c1681ba0314fff89486c270d9e4d167479b661a55bdf4af9ca6420b08dfa8b9526302310d0243d3f722f367b0c677f707ec2ba7
languageName: node
linkType: hard
"@polkadot/types-codec@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/types-codec@npm:15.3.1"
dependencies:
"@polkadot/util": ^13.3.1
"@polkadot/x-bigint": ^13.3.1
tslib: ^2.8.1
checksum: 20277f3554e50f50957ccdb1a337624a1a575976314c5f3e6f1874f44564a228539e69eaf397cc0fc0544a7b3d59193ecafd053c1e04a4c082b8c7003e25e41d
languageName: node
linkType: hard
"@polkadot/types-create@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/types-create@npm:15.3.1"
dependencies:
"@polkadot/types-codec": 15.3.1
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: dec0dced6a314f5832f2df60b85b4b7f8fa43459b822bb7783d6b1a82f15d6d8a22e18e1d3df21ba5f5ab54e8578c80bf2ec79838a69ea098774a7e294984fec
languageName: node
linkType: hard
"@polkadot/types-known@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/types-known@npm:15.3.1"
dependencies:
"@polkadot/networks": ^13.3.1
"@polkadot/types": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/types-create": 15.3.1
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: 4f4986d145e8e94a8bd91d917acef4d498e429e2fade50dd077a1d02c838589efe98eb9c82f203cd1cd7aa89b446a2ead81f67940c03dc095fc14c500c831d1d
languageName: node
linkType: hard
"@polkadot/types-support@npm:15.3.1":
version: 15.3.1
resolution: "@polkadot/types-support@npm:15.3.1"
dependencies:
"@polkadot/util": ^13.3.1
tslib: ^2.8.1
checksum: 34f89aadf3a84fbafc05d11b0b2d138a24b9a26d27a9d525ffba8d4c09ca4fd995584d0aa9e1acca3d522a3aee73c0e3c5efb4fd0d01895f728e03176574db48
languageName: node
linkType: hard
"@polkadot/types@npm:15.3.1, @polkadot/types@npm:^15.2.1":
version: 15.3.1
resolution: "@polkadot/types@npm:15.3.1"
dependencies:
"@polkadot/keyring": ^13.3.1
"@polkadot/types-augment": 15.3.1
"@polkadot/types-codec": 15.3.1
"@polkadot/types-create": 15.3.1
"@polkadot/util": ^13.3.1
"@polkadot/util-crypto": ^13.3.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 6cb75d1f71297eda361cb691033e193458c3a27a8116e07058eaa2c6b657317243452d893a5d93655839ce49fdbbd5e6553df5a06c10aa8fe3b13318cd08f294
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:13.3.1, @polkadot/util-crypto@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/util-crypto@npm:13.3.1"
dependencies:
"@noble/curves": ^1.3.0
"@noble/hashes": ^1.3.3
"@polkadot/networks": 13.3.1
"@polkadot/util": 13.3.1
"@polkadot/wasm-crypto": ^7.4.1
"@polkadot/wasm-util": ^7.4.1
"@polkadot/x-bigint": 13.3.1
"@polkadot/x-randomvalues": 13.3.1
"@scure/base": ^1.1.7
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.3.1
checksum: 0a0d2c57296945578b84cc4040f7be9d906ebac1c6d25291844fed50349adb0df8f8f9ff5e8f6e7ff0006652ffda23ee3a458a6dfbbd087d2e8c36f0c20864e2
languageName: node
linkType: hard
"@polkadot/util@npm:13.3.1, @polkadot/util@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/util@npm:13.3.1"
dependencies:
"@polkadot/x-bigint": 13.3.1
"@polkadot/x-global": 13.3.1
"@polkadot/x-textdecoder": 13.3.1
"@polkadot/x-textencoder": 13.3.1
"@types/bn.js": ^5.1.6
bn.js: ^5.2.1
tslib: ^2.8.0
checksum: edb0e888046bb5dd5275afd7565d21ee11c09c811f3ef87db4a01deb36902f1537ccfcf727bb80d53c4381a8a6d997d093d4af0be9a4d305a5f904a97bf71996
languageName: node
linkType: hard
"@polkadot/wasm-bridge@npm:7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-bridge@npm:7.4.1"
dependencies:
"@polkadot/wasm-util": 7.4.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: 2cb4389853764eccebbe37a36e583a240b06e20c726247173c3ff5d85e198544c17ebef302da2e40ccd67f4fdb81454ab01cfbfc2fb93b1b3553d5bcdf4fe1bc
languageName: node
linkType: hard
"@polkadot/wasm-crypto-asmjs@npm:7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-crypto-asmjs@npm:7.4.1"
dependencies:
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: 983c345b034723d1967349f446682f79c1ee02030895153fd4aa137cd00bbf8788ddfeb0825e2118ee5db2894707f4224d61eabe931c028d22d1f10e52a1acd8
languageName: node
linkType: hard
"@polkadot/wasm-crypto-init@npm:7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-crypto-init@npm:7.4.1"
dependencies:
"@polkadot/wasm-bridge": 7.4.1
"@polkadot/wasm-crypto-asmjs": 7.4.1
"@polkadot/wasm-crypto-wasm": 7.4.1
"@polkadot/wasm-util": 7.4.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: fc697dc76d99b9597750abe3739da28ed3731b199eb8efc522bab03bca4fb9b34ece091ebd9bd26509d75a9785078724417754ac45e1fec4ed541b805fc75025
languageName: node
linkType: hard
"@polkadot/wasm-crypto-wasm@npm:7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-crypto-wasm@npm:7.4.1"
dependencies:
"@polkadot/wasm-util": 7.4.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: 303c53cdb5a9219f52827cb51bae8be3e897317280adea8a6507a5cbf3ad4b4bd62b5ca7ceba02f972dc0df1e36a4a169b9eaf863076a913c2a612e9c71742f4
languageName: node
linkType: hard
"@polkadot/wasm-crypto@npm:^7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-crypto@npm:7.4.1"
dependencies:
"@polkadot/wasm-bridge": 7.4.1
"@polkadot/wasm-crypto-asmjs": 7.4.1
"@polkadot/wasm-crypto-init": 7.4.1
"@polkadot/wasm-crypto-wasm": 7.4.1
"@polkadot/wasm-util": 7.4.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: c3c155ad08a3be5b3de22743a3e8f3658082150138e770d4604e55256671021fb9d2f191fc228b0a7893a1af1cfce21daa11f7300a8b4cf1037de01aad583dcf
languageName: node
linkType: hard
"@polkadot/wasm-util@npm:7.4.1, @polkadot/wasm-util@npm:^7.4.1":
version: 7.4.1
resolution: "@polkadot/wasm-util@npm:7.4.1"
dependencies:
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: 16995482059ea7b3fa95ecb8bddd1465af64ca8b0b42b9942839fd0aa7bf556b7f4c914eb3bfe035d73ec5f1dc91f1b0b5d502bfb9d8b809d4399cd15b934e70
languageName: node
linkType: hard
"@polkadot/x-bigint@npm:13.3.1, @polkadot/x-bigint@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/x-bigint@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
tslib: ^2.8.0
checksum: 8a281a7692fe50463a90b692298994b7d8c363da903a29b2202ee3711d0ec99478c7496d1a3d23f7ac2660a10497df315acd90c2352927208ea5a39e287750c0
languageName: node
linkType: hard
"@polkadot/x-fetch@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/x-fetch@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
node-fetch: ^3.3.2
tslib: ^2.8.0
checksum: 2de1bc940d9aa1ed57ac02e471a58c1fb2f7e4fa20959c3bd1eedd454ea080b4a60a9548aef59e7b3235063f899c18c535444ca7ef112bea5653d4437269b4ca
languageName: node
linkType: hard
"@polkadot/x-global@npm:13.3.1, @polkadot/x-global@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/x-global@npm:13.3.1"
dependencies:
tslib: ^2.8.0
checksum: ec94d30e39854af70ecf8bbdf6e368e41ca2abc745a3bc26ef8af19fea5f62b94f75d4af45cc7eae93c40018ee17794872526b05d5f4c3d406ebe529174391a8
languageName: node
linkType: hard
"@polkadot/x-randomvalues@npm:13.3.1":
version: 13.3.1
resolution: "@polkadot/x-randomvalues@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.3.1
"@polkadot/wasm-util": "*"
checksum: c4d8250e3e284cd01cb4e7ec52356e21f832c6430d5faa7a905a5a2ebd5c983a15aec7aecc481cd2d80097d7d71fa907e7ad7031cc1285fa548bc87914d7f5cd
languageName: node
linkType: hard
"@polkadot/x-textdecoder@npm:13.3.1":
version: 13.3.1
resolution: "@polkadot/x-textdecoder@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
tslib: ^2.8.0
checksum: 70970ba5a5ff2350f8a3a26d2debd28be513322eb14d79d0f9dbbe96e0d81e91873544ba0c33d7526a40dd02a43cd2c56931747153343cdda07206da5885fbfd
languageName: node
linkType: hard
"@polkadot/x-textencoder@npm:13.3.1":
version: 13.3.1
resolution: "@polkadot/x-textencoder@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
tslib: ^2.8.0
checksum: 02de4188e43b128d384d11a5105796c0777ef94520a762f5731000561653ec2df126b5037f3d74fe28c11eab9fea0fd9f7f0a1fb38310e1c388480a2e9ceb3e8
languageName: node
linkType: hard
"@polkadot/x-ws@npm:^13.3.1":
version: 13.3.1
resolution: "@polkadot/x-ws@npm:13.3.1"
dependencies:
"@polkadot/x-global": 13.3.1
tslib: ^2.8.0
ws: ^8.18.0
checksum: a38a672dfad791deccacd44ee9302b1b78d6ca78a87c50cc1124bb8a25f021f33e5e42e8b948ef3c9a3158c19284c03ef9501ecd8a741a47e3d48accb7de6f11
languageName: node
linkType: hard
"@rollup/rollup-android-arm-eabi@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-android-arm-eabi@npm:4.31.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@rollup/rollup-android-arm64@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-android-arm64@npm:4.31.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-arm64@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-darwin-arm64@npm:4.31.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-darwin-x64@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-darwin-x64@npm:4.31.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-freebsd-arm64@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-freebsd-arm64@npm:4.31.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-freebsd-x64@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-freebsd-x64@npm:4.31.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.31.0"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-arm-musleabihf@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.31.0"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.31.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-arm64-musl@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.31.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.31.0"
conditions: os=linux & cpu=loong64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.31.0"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-riscv64-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.31.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-s390x-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.31.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-gnu@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.31.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@rollup/rollup-linux-x64-musl@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-linux-x64-musl@npm:4.31.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@rollup/rollup-win32-arm64-msvc@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.31.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@rollup/rollup-win32-ia32-msvc@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.31.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@rollup/rollup-win32-x64-msvc@npm:4.31.0":
version: 4.31.0
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.31.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@scure/base@npm:^1.1.1":
version: 1.1.5
resolution: "@scure/base@npm:1.1.5"
checksum: 9e9ee6088cb3aa0fb91f5a48497d26682c7829df3019b1251d088d166d7a8c0f941c68aaa8e7b96bbad20c71eb210397cb1099062cde3e29d4bad6b975c18519
languageName: node
linkType: hard
"@scure/base@npm:^1.1.7, @scure/base@npm:~1.1.7":
version: 1.1.9
resolution: "@scure/base@npm:1.1.9"
checksum: 120820a37dfe9dfe4cab2b7b7460552d08e67dee8057ed5354eb68d8e3440890ae983ce3bee957d2b45684950b454a2b6d71d5ee77c1fd3fddc022e2a510337f
languageName: node
linkType: hard
"@scure/base@npm:~1.1.8":
version: 1.1.8
resolution: "@scure/base@npm:1.1.8"
checksum: 1fc8a355ba68663c0eb430cf6a2c5ff5af790c347c1ba1953f344e8681ab37e37e2545e495f7f971b0245727d710fea8c1e57d232d0c6c543cbed4965c7596a1
languageName: node
linkType: hard
"@scure/base@npm:~1.2.1":
version: 1.2.1
resolution: "@scure/base@npm:1.2.1"
checksum: 061e04e4f6ed7bada6cdad4c799e6a82f30dda3f4008895bdb2e556f333f9b41f44dc067d25c064357ed6c012ea9c8be1e7927caf8a083af865b8de27b52370c
languageName: node
linkType: hard
"@scure/bip32@npm:1.6.0":
version: 1.6.0
resolution: "@scure/bip32@npm:1.6.0"
dependencies:
"@noble/curves": ~1.7.0
"@noble/hashes": ~1.6.0
"@scure/base": ~1.2.1
checksum: 1347477e28678a9bc4e2ec5e8e0f679263f2e3cb19c0e65849f76810c4c608461d4b283521c897249fa7dacc8c76e1b50e2a866b22467c8e93662a9c545cd42b
languageName: node
linkType: hard
"@scure/bip32@npm:^1.5.0":
version: 1.5.0
resolution: "@scure/bip32@npm:1.5.0"
dependencies:
"@noble/curves": ~1.6.0
"@noble/hashes": ~1.5.0
"@scure/base": ~1.1.7
checksum: 2e119525cdffccc3aad7ca64aec22df2101233708111dfb551410f82aae85fe14acf39dc87cea1a535adc327451f9c3dea3c6a2dd22b859508025bc46a7a80ce
languageName: node
linkType: hard
"@scure/bip39@npm:1.5.0":
version: 1.5.0
resolution: "@scure/bip39@npm:1.5.0"
dependencies:
"@noble/hashes": ~1.6.0
"@scure/base": ~1.2.1
checksum: 03d1888f5d0d514eebc5c3adc1e071d225963d434fcf789abea5ef2c8b4b99f3ad9ebee8a597c0c13d5415e6b2b380f55f61560c1643cd871961ab91cbcf5122
languageName: node
linkType: hard
"@scure/bip39@npm:^1.4.0":
version: 1.4.0
resolution: "@scure/bip39@npm:1.4.0"
dependencies:
"@noble/hashes": ~1.5.0
"@scure/base": ~1.1.8
checksum: 211f2c01361993bfe54c0e4949f290224381457c7f76d7cd51d6a983f3f4b6b9f85adfd0e623977d777ed80417a5fe729eb19dd34e657147810a0e58a8e7b9e0
languageName: node