-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathyarn.lock
More file actions
3740 lines (3373 loc) · 121 KB
/
yarn.lock
File metadata and controls
3740 lines (3373 loc) · 121 KB
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.11.0":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: b2911269e3e0ec6396a2e5433a99e0e1f9726befc6c167994448cd0e53dbdd0be22b4835b4f619558b568ed9aa7312426b8fa6557a13999463489daa88169ee5
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/aix-ppc64@npm:0.25.1"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/android-arm64@npm:0.25.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/android-arm@npm:0.25.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/android-x64@npm:0.25.1"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/darwin-arm64@npm:0.25.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/darwin-x64@npm:0.25.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/freebsd-arm64@npm:0.25.1"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/freebsd-x64@npm:0.25.1"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-arm64@npm:0.25.1"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-arm@npm:0.25.1"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-ia32@npm:0.25.1"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-loong64@npm:0.25.1"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-mips64el@npm:0.25.1"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-ppc64@npm:0.25.1"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-riscv64@npm:0.25.1"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-s390x@npm:0.25.1"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/linux-x64@npm:0.25.1"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/netbsd-arm64@npm:0.25.1"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/netbsd-x64@npm:0.25.1"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/openbsd-arm64@npm:0.25.1"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/openbsd-x64@npm:0.25.1"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/sunos-x64@npm:0.25.1"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/win32-arm64@npm:0.25.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/win32-ia32@npm:0.25.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.1":
version: 0.25.1
resolution: "@esbuild/win32-x64@npm:0.25.1"
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/ciphers@npm:^1.3.0":
version: 1.3.0
resolution: "@noble/ciphers@npm:1.3.0"
checksum: 19722c35475df9bc78db60d261d0b5ef8a6d722561efc2135453f943eaa421b492195dc666e3e4df2b755bca3739e04f04b9c660198559f5dd05d3cfbf1b9e92
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.9.1, @noble/curves@npm:~1.9.0":
version: 1.9.1
resolution: "@noble/curves@npm:1.9.1"
dependencies:
"@noble/hashes": 1.8.0
checksum: 4f3483a1001538d2f55516cdcb19319d1eaef79550633f670e7d570b989cdbc0129952868b72bb67643329746b8ffefe8e4cd791c8cc35574e05a37f873eef42
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/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.8.0, @noble/hashes@npm:^1.8.0, @noble/hashes@npm:~1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: c94e98b941963676feaba62475b1ccfa8341e3f572adbb3b684ee38b658df44100187fa0ef4220da580b13f8d27e87d5492623c8a02ecc61f23fb9960c7918f5
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:16.4.8, @polkadot/api-augment@npm:^16.4.8":
version: 16.4.8
resolution: "@polkadot/api-augment@npm:16.4.8"
dependencies:
"@polkadot/api-base": 16.4.8
"@polkadot/rpc-augment": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/types-augment": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: 66e01e842e2db9053a92cf0bd8db94b269f670284474e3bc29ba9837363d8fe87ed33734095ff3ac9869eede9571775a26083408911c6212867499d62b595f99
languageName: node
linkType: hard
"@polkadot/api-augment@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/api-augment@npm:16.4.9"
dependencies:
"@polkadot/api-base": 16.4.9
"@polkadot/rpc-augment": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/types-augment": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: fb8b1bb5cf616b78a1c7b3451db1ea89b921a7fe89e3b215416727967e882b781d18ae9f4d21f7896e8c7c068e4eeb63dc8e32076fb5916a73e0330d09cb4237
languageName: node
linkType: hard
"@polkadot/api-base@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/api-base@npm:16.4.8"
dependencies:
"@polkadot/rpc-core": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/util": ^13.5.6
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 22b695ab1bdac1d79402700814433e5d120deee8166426a595cdce015d1f064f6043d73baa8a2009e0d120831a88626e5df4ff6f778933ac38c23cd1135c37ec
languageName: node
linkType: hard
"@polkadot/api-base@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/api-base@npm:16.4.9"
dependencies:
"@polkadot/rpc-core": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/util": ^13.5.7
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 0d08b04b5cc76910a362dc2eb82a9883e5d1646924115170b4c426b03035dc85c7217b10cc30f6212af7abaaefd1a30f50c129e360be64fbc50931b1e1c9effc
languageName: node
linkType: hard
"@polkadot/api-cli@npm:^0.63.16":
version: 0.63.16
resolution: "@polkadot/api-cli@npm:0.63.16"
dependencies:
"@polkadot/api": ^16.4.8
"@polkadot/api-augment": ^16.4.8
"@polkadot/keyring": ^13.5.6
"@polkadot/types": ^16.4.8
"@polkadot/util": ^13.5.6
"@polkadot/util-crypto": ^13.5.6
tslib: ^2.8.1
yargs: ^17.7.2
bin:
polkadot-js-api: runcli.mjs
checksum: ce02eced85197a073c8daf0dbae119134f428b481a6b70f938e76efb7620ec0a0c6a0937256a3118cc1ee584dc7da93634ff62cdc52cdc04bb207df36c40ce9e
languageName: node
linkType: hard
"@polkadot/api-derive@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/api-derive@npm:16.4.8"
dependencies:
"@polkadot/api": 16.4.8
"@polkadot/api-augment": 16.4.8
"@polkadot/api-base": 16.4.8
"@polkadot/rpc-core": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/util": ^13.5.6
"@polkadot/util-crypto": ^13.5.6
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 5158cd549c7bf397052d94325c1d1df8fde3af03197390b8381a34e804e8ab933f1983086046cc99dfe60259d997f839c70c0cf680a0f0171199513d4ccb966d
languageName: node
linkType: hard
"@polkadot/api-derive@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/api-derive@npm:16.4.9"
dependencies:
"@polkadot/api": 16.4.9
"@polkadot/api-augment": 16.4.9
"@polkadot/api-base": 16.4.9
"@polkadot/rpc-core": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/util": ^13.5.7
"@polkadot/util-crypto": ^13.5.7
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: ebdfa5d843377ffb128a1cd83c2d2a98b7ec197b5e36d6595afa42535f5025a94c3bd1fadfefb39a100f0dc35bfd9ad2e08caf4aa8611a1ded1c7261c0fd73a3
languageName: node
linkType: hard
"@polkadot/api@npm:16.4.8, @polkadot/api@npm:^16.4.8":
version: 16.4.8
resolution: "@polkadot/api@npm:16.4.8"
dependencies:
"@polkadot/api-augment": 16.4.8
"@polkadot/api-base": 16.4.8
"@polkadot/api-derive": 16.4.8
"@polkadot/keyring": ^13.5.6
"@polkadot/rpc-augment": 16.4.8
"@polkadot/rpc-core": 16.4.8
"@polkadot/rpc-provider": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/types-augment": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/types-create": 16.4.8
"@polkadot/types-known": 16.4.8
"@polkadot/util": ^13.5.6
"@polkadot/util-crypto": ^13.5.6
eventemitter3: ^5.0.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 89b8acfe126962cc8fbe9ab5084cbae635ac5393bc19897df41915c07d329b79b222d345b4d61124a2560aae39791f58cd6d27cf350a41cdc958ad05cc522e63
languageName: node
linkType: hard
"@polkadot/api@npm:16.4.9, @polkadot/api@npm:^16.4.9":
version: 16.4.9
resolution: "@polkadot/api@npm:16.4.9"
dependencies:
"@polkadot/api-augment": 16.4.9
"@polkadot/api-base": 16.4.9
"@polkadot/api-derive": 16.4.9
"@polkadot/keyring": ^13.5.7
"@polkadot/rpc-augment": 16.4.9
"@polkadot/rpc-core": 16.4.9
"@polkadot/rpc-provider": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/types-augment": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/types-create": 16.4.9
"@polkadot/types-known": 16.4.9
"@polkadot/util": ^13.5.7
"@polkadot/util-crypto": ^13.5.7
eventemitter3: ^5.0.1
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: fbaf3f5d97db47525461c00e05cfdd1523c823600e655ffc5cd02de4fa5de1d031ec4d2e6420e5099dd9c9fab82536b387f004b0b3e8d23f4350092b46fb9d9f
languageName: node
linkType: hard
"@polkadot/keyring@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/keyring@npm:13.5.6"
dependencies:
"@polkadot/util": 13.5.6
"@polkadot/util-crypto": 13.5.6
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.5.6
"@polkadot/util-crypto": 13.5.6
checksum: 902e817bbac82fe36e9429187d5c7f16d2594b4b0868d74e108f0b34b163e33fd13794b80f2728ad3abed5b3bad0f76f63b3e3d79de8470499b637b49f1a9a77
languageName: node
linkType: hard
"@polkadot/keyring@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/keyring@npm:13.5.7"
dependencies:
"@polkadot/util": 13.5.7
"@polkadot/util-crypto": 13.5.7
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.5.7
"@polkadot/util-crypto": 13.5.7
checksum: d237fd191521088ffe93865bd4a9680d0dfa9734b0c7e0a407f0db7561f3f3e329a01232ae4493b0a7aafbbd5b3edc3ac8d787a5de3d92b7ef3ed82e3b86f4e7
languageName: node
linkType: hard
"@polkadot/networks@npm:13.5.6, @polkadot/networks@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/networks@npm:13.5.6"
dependencies:
"@polkadot/util": 13.5.6
"@substrate/ss58-registry": ^1.51.0
tslib: ^2.8.0
checksum: e3caca754aeb2f50d990d2844f65dfd2e615511f7bdd1c7e533812ba75d7050734912ca4e75632e372f3c56fe9ec9788733d8ca2576df59a451bb521f079e8e8
languageName: node
linkType: hard
"@polkadot/networks@npm:13.5.7, @polkadot/networks@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/networks@npm:13.5.7"
dependencies:
"@polkadot/util": 13.5.7
"@substrate/ss58-registry": ^1.51.0
tslib: ^2.8.0
checksum: c662fcf30a4076942c3d8b2258de1acb67d368d5d259f6364995c77daf0293f92fd582a0d586695af194ed753417ba79ac8844b1d93d8a669844f7821c952c22
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/rpc-augment@npm:16.4.8"
dependencies:
"@polkadot/rpc-core": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: 0a758cb7ea2b8c2d4365c8edac0479e13d460fc85a5e53384f87744f3dd1f962f4e61a5ecac0639fb008cb6d7b9cd3df8cd32e7a10d76838080d7c3237774b25
languageName: node
linkType: hard
"@polkadot/rpc-augment@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/rpc-augment@npm:16.4.9"
dependencies:
"@polkadot/rpc-core": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: 2efaa5e0a21dd05d673c7593964c34a132286495fa269eb9789cfbc4e7f7014cceca364de7787fc82f98178eff7ac65cd96c9d9a73ae86940b214f0eaafc4989
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/rpc-core@npm:16.4.8"
dependencies:
"@polkadot/rpc-augment": 16.4.8
"@polkadot/rpc-provider": 16.4.8
"@polkadot/types": 16.4.8
"@polkadot/util": ^13.5.6
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: ea53827301aefd4eb59f5ea20280851fd2c931f3818560709a816e7d5c7b05926756ccdeede772b25ffb72076b6eb56dda8d8112c521b2ed515256be7f6e69c1
languageName: node
linkType: hard
"@polkadot/rpc-core@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/rpc-core@npm:16.4.9"
dependencies:
"@polkadot/rpc-augment": 16.4.9
"@polkadot/rpc-provider": 16.4.9
"@polkadot/types": 16.4.9
"@polkadot/util": ^13.5.7
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 6e1ec087dbc182a91b109f55b69501e278cb62afb76fc6ef19d11ac0bdc66015e049ab13e961049a2b151cf9ad4367796455f273e3f3ced15c654ca9116759f8
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/rpc-provider@npm:16.4.8"
dependencies:
"@polkadot/keyring": ^13.5.6
"@polkadot/types": 16.4.8
"@polkadot/types-support": 16.4.8
"@polkadot/util": ^13.5.6
"@polkadot/util-crypto": ^13.5.6
"@polkadot/x-fetch": ^13.5.6
"@polkadot/x-global": ^13.5.6
"@polkadot/x-ws": ^13.5.6
"@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: 97327e6a839cc96193ea85f0c7cfd407f7bb14241b29f0e9ad120b321f80ddb4a42ed110be2d7d2163b31d496a7299fd9baee3d0caf39cc3b4c29b0bc4fb5600
languageName: node
linkType: hard
"@polkadot/rpc-provider@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/rpc-provider@npm:16.4.9"
dependencies:
"@polkadot/keyring": ^13.5.7
"@polkadot/types": 16.4.9
"@polkadot/types-support": 16.4.9
"@polkadot/util": ^13.5.7
"@polkadot/util-crypto": ^13.5.7
"@polkadot/x-fetch": ^13.5.7
"@polkadot/x-global": ^13.5.7
"@polkadot/x-ws": ^13.5.7
"@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: 1da16ff18ed2e969d30e42e3eccec6a743a0cf745beaf302cc3f27f96af88b8322640f98247419c049034ee89c4ae70264ba10f9c1be319f173248dddc73dbc4
languageName: node
linkType: hard
"@polkadot/types-augment@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/types-augment@npm:16.4.8"
dependencies:
"@polkadot/types": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: 3496d5a8b817551182ba489b8f2df35a33a4eb9acee67cfbed6a19198fe41693dea67cd125a70ec264fb9903ac64d36deece70fd6de4cf75cc863810d1930d47
languageName: node
linkType: hard
"@polkadot/types-augment@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types-augment@npm:16.4.9"
dependencies:
"@polkadot/types": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: 8e9a656467f26fa6e1399cf77283aa984a501cf54e4a9c67242afdc72f0d10a0249db5dcc08041bce5bf42afb038c4356c09fdf12104665c6cf1127a66144d06
languageName: node
linkType: hard
"@polkadot/types-codec@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/types-codec@npm:16.4.8"
dependencies:
"@polkadot/util": ^13.5.6
"@polkadot/x-bigint": ^13.5.6
tslib: ^2.8.1
checksum: 52de7f594e5404969ef034d8d4ce5b17b90ff71b2d5e346d5726715df80323fa74a66dad4c8458a9530f04a8998e00aa1dc7b1b02053a9170806cc9ed68b0eef
languageName: node
linkType: hard
"@polkadot/types-codec@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types-codec@npm:16.4.9"
dependencies:
"@polkadot/util": ^13.5.7
"@polkadot/x-bigint": ^13.5.7
tslib: ^2.8.1
checksum: 072ec4a31cf609025b476542b5d0195271a00f093d578854659b3c9f77983fc53533fc27284c43420596d66ecc8520cf9f2d06218564557905b2639a5eba8700
languageName: node
linkType: hard
"@polkadot/types-create@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/types-create@npm:16.4.8"
dependencies:
"@polkadot/types-codec": 16.4.8
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: 46738b230dc1b0400b3900fc58887a0ebc7ca2536e55ac5fa8b01e48feaf96791ff9967c61f7fb3f23b18d92bd619fe2a1db8d6540c7b07f2dbe8c4c587b4512
languageName: node
linkType: hard
"@polkadot/types-create@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types-create@npm:16.4.9"
dependencies:
"@polkadot/types-codec": 16.4.9
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: a762dae687d4ef0f5f289d063db002ebc4a88c67beba6bd1bc71a93c6a70fed5dfb1060ce8a5e15e64c916afde920abbd166aa2fa9effb2b852649e50cd03b0d
languageName: node
linkType: hard
"@polkadot/types-known@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/types-known@npm:16.4.8"
dependencies:
"@polkadot/networks": ^13.5.6
"@polkadot/types": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/types-create": 16.4.8
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: eb3b50b8adf2786df0616f5543810c83ff4e93b9dad0daddef6bc23a62f3d6bb988f93bbc797f98694b5374d223dab73b3180306bf27e191ab5a22f21e72e76d
languageName: node
linkType: hard
"@polkadot/types-known@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types-known@npm:16.4.9"
dependencies:
"@polkadot/networks": ^13.5.7
"@polkadot/types": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/types-create": 16.4.9
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: 776c9626ee3b1e60eaf41ff8e0a06011c7fe288fae4cda85b92a72e6d37d993f45395e2a3d9c55cc95ef39b8c7f2cfe866624dc4b73c55a67b1535c63f923acb
languageName: node
linkType: hard
"@polkadot/types-support@npm:16.4.8":
version: 16.4.8
resolution: "@polkadot/types-support@npm:16.4.8"
dependencies:
"@polkadot/util": ^13.5.6
tslib: ^2.8.1
checksum: 16b390e9a863d8f5c528e6c7c96dca50d445483a4050030ae6b3d06f753757a41080caf4e1dbcf47800c8152ada868230da66e2073bf22d2bb0eb840465b9fcd
languageName: node
linkType: hard
"@polkadot/types-support@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types-support@npm:16.4.9"
dependencies:
"@polkadot/util": ^13.5.7
tslib: ^2.8.1
checksum: 0db0cfc9f6025c7344358e30357c673fee5b978339143cf19fce13122b82f284f6f7d30bfa21782bb60fcaa4015fb805d48a7983c5fa0457ce744f4de7363074
languageName: node
linkType: hard
"@polkadot/types@npm:16.4.8, @polkadot/types@npm:^16.4.8":
version: 16.4.8
resolution: "@polkadot/types@npm:16.4.8"
dependencies:
"@polkadot/keyring": ^13.5.6
"@polkadot/types-augment": 16.4.8
"@polkadot/types-codec": 16.4.8
"@polkadot/types-create": 16.4.8
"@polkadot/util": ^13.5.6
"@polkadot/util-crypto": ^13.5.6
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: bf4880e4bd7beb5adb0d41d61fcf2835c42fe34bddf37c24257c49a312ab6613d6af457c6a8310f4c432285b5d12900c230987f125d269d87d07f99c6b76ebe5
languageName: node
linkType: hard
"@polkadot/types@npm:16.4.9":
version: 16.4.9
resolution: "@polkadot/types@npm:16.4.9"
dependencies:
"@polkadot/keyring": ^13.5.7
"@polkadot/types-augment": 16.4.9
"@polkadot/types-codec": 16.4.9
"@polkadot/types-create": 16.4.9
"@polkadot/util": ^13.5.7
"@polkadot/util-crypto": ^13.5.7
rxjs: ^7.8.1
tslib: ^2.8.1
checksum: 09b361d72c5b3c8d73c4b68ade8793d2537a9c39b30bc12a2ca001d10ff4c85dd50727ef3f0b7e9667c12a827a78210161eca6443df8e0f9e2be22bd331422f6
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:13.5.6, @polkadot/util-crypto@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/util-crypto@npm:13.5.6"
dependencies:
"@noble/curves": ^1.3.0
"@noble/hashes": ^1.3.3
"@polkadot/networks": 13.5.6
"@polkadot/util": 13.5.6
"@polkadot/wasm-crypto": ^7.5.1
"@polkadot/wasm-util": ^7.5.1
"@polkadot/x-bigint": 13.5.6
"@polkadot/x-randomvalues": 13.5.6
"@scure/base": ^1.1.7
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.5.6
checksum: e65ddc980d6a6d43ff1d3083f9aec3216d7290892fd511ef59697a1a8442ff2d2302434bb5dfb9f86e10417c80960a2580d01cdb9417ad0979035feee8fd5a5a
languageName: node
linkType: hard
"@polkadot/util-crypto@npm:13.5.7, @polkadot/util-crypto@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/util-crypto@npm:13.5.7"
dependencies:
"@noble/curves": ^1.3.0
"@noble/hashes": ^1.3.3
"@polkadot/networks": 13.5.7
"@polkadot/util": 13.5.7
"@polkadot/wasm-crypto": ^7.5.1
"@polkadot/wasm-util": ^7.5.1
"@polkadot/x-bigint": 13.5.7
"@polkadot/x-randomvalues": 13.5.7
"@scure/base": ^1.1.7
tslib: ^2.8.0
peerDependencies:
"@polkadot/util": 13.5.7
checksum: 8a2f61a8a396448e834cf4f960c1942ed539f976d3fdcaf5e9086833a3f1ba58509cae1aa2872e185d6716be6af779ab60b4fffcbd6eb090ff379cd0054d96ff
languageName: node
linkType: hard
"@polkadot/util@npm:13.5.6, @polkadot/util@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/util@npm:13.5.6"
dependencies:
"@polkadot/x-bigint": 13.5.6
"@polkadot/x-global": 13.5.6
"@polkadot/x-textdecoder": 13.5.6
"@polkadot/x-textencoder": 13.5.6
"@types/bn.js": ^5.1.6
bn.js: ^5.2.1
tslib: ^2.8.0
checksum: 4443a937ef66fbf375c30c33f9029d5fd38de6ee11b15b450ffdcac91ee05560b93d000a6d852ff2891589002c547e2a3aa76ec9f09253b09ef854f32f213630
languageName: node
linkType: hard
"@polkadot/util@npm:13.5.7, @polkadot/util@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/util@npm:13.5.7"
dependencies:
"@polkadot/x-bigint": 13.5.7
"@polkadot/x-global": 13.5.7
"@polkadot/x-textdecoder": 13.5.7
"@polkadot/x-textencoder": 13.5.7
"@types/bn.js": ^5.1.6
bn.js: ^5.2.1
tslib: ^2.8.0
checksum: 60d42548d7c7dd92e083ab8e93b222ac7abc1fbd13c5f9e02e726c40cc5106a334b0a0a243753fc91e59ad09c72de3c69fd3ec6900be0903957455f56d5cb349
languageName: node
linkType: hard
"@polkadot/wasm-bridge@npm:7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-bridge@npm:7.5.1"
dependencies:
"@polkadot/wasm-util": 7.5.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: d3d25cf72d4b33d2af338830e17b5cd906f64be577f9925be61c9447abfa03406a084f65ebbf1c742bc12e5d327b093f793e8893045a53f0512f04c10e6bef37
languageName: node
linkType: hard
"@polkadot/wasm-crypto-asmjs@npm:7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-crypto-asmjs@npm:7.5.1"
dependencies:
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: 3ad40dcbe0feb677ed5a625bb77703344bbee819d74c4bf2aaf7accdc7d766a7f962fb29e78c47b480d3550318ad8a72bcd9c466812a16ac4c08c82b828857cc
languageName: node
linkType: hard
"@polkadot/wasm-crypto-init@npm:7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-crypto-init@npm:7.5.1"
dependencies:
"@polkadot/wasm-bridge": 7.5.1
"@polkadot/wasm-crypto-asmjs": 7.5.1
"@polkadot/wasm-crypto-wasm": 7.5.1
"@polkadot/wasm-util": 7.5.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: e552b4b04b46e46298c863ee4353db17cf3095cfa1922c4b1b40be5ee262f39cb4e10cd7b125c7b92a87097175ed0f5574851e2eafe204a268448455f2c6bbb2
languageName: node
linkType: hard
"@polkadot/wasm-crypto-wasm@npm:7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-crypto-wasm@npm:7.5.1"
dependencies:
"@polkadot/wasm-util": 7.5.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: ce065f4e402d950f306a771a772195b68648167ec509ae265f22fdb29cce18e0c543516010f0e1836f91e3eb7e5d99e1880b2705a79ea5650afdf8d393a9ac86
languageName: node
linkType: hard
"@polkadot/wasm-crypto@npm:^7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-crypto@npm:7.5.1"
dependencies:
"@polkadot/wasm-bridge": 7.5.1
"@polkadot/wasm-crypto-asmjs": 7.5.1
"@polkadot/wasm-crypto-init": 7.5.1
"@polkadot/wasm-crypto-wasm": 7.5.1
"@polkadot/wasm-util": 7.5.1
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
"@polkadot/x-randomvalues": "*"
checksum: bedf883b590bca6a3281e71e0d5ea46325ac0bbc9fe46557cf94d9f8bb0bdccf51c13aee35c336da4e9498ca99fcea67f01f32d22c3853ecde75b50cf7f41679
languageName: node
linkType: hard
"@polkadot/wasm-util@npm:7.5.1, @polkadot/wasm-util@npm:^7.5.1":
version: 7.5.1
resolution: "@polkadot/wasm-util@npm:7.5.1"
dependencies:
tslib: ^2.7.0
peerDependencies:
"@polkadot/util": "*"
checksum: 5f3f69ca82a264c55acf7225d524110d8c99c8ef631555afa85ee0d89761ea8c2c5140441458a0277109ca151f378635710b86ae680b6a2242c24129d781a832
languageName: node
linkType: hard
"@polkadot/x-bigint@npm:13.5.6, @polkadot/x-bigint@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/x-bigint@npm:13.5.6"
dependencies:
"@polkadot/x-global": 13.5.6
tslib: ^2.8.0
checksum: 8f28ac7ad8f386d5b72517fbf9cadf3351bc4cab5d1eadbc0037b89dbbb69161a2b171bc8c6f95645188e113468badeba3bc6e4ae2305791413e288cb2958431
languageName: node
linkType: hard
"@polkadot/x-bigint@npm:13.5.7, @polkadot/x-bigint@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/x-bigint@npm:13.5.7"
dependencies:
"@polkadot/x-global": 13.5.7
tslib: ^2.8.0
checksum: 92be0e9b721fd84ae0be70232d832426b2a13e14690fa4648a2d48c315ea1abfb533336d29ccf8b5e085056832c240cacfd00ae646799d7180c037e353c505d6
languageName: node
linkType: hard
"@polkadot/x-fetch@npm:^13.5.6":
version: 13.5.6
resolution: "@polkadot/x-fetch@npm:13.5.6"
dependencies:
"@polkadot/x-global": 13.5.6
node-fetch: ^3.3.2
tslib: ^2.8.0
checksum: 24499d60cd074f5da2e7dfa9a9b17984e0a2424bbf971d7e6cb38866fd2a979745b9c320dba523b1c88d84b7fb07f71cbd2e00610fe85351c5b42b4d109a8ac6
languageName: node
linkType: hard
"@polkadot/x-fetch@npm:^13.5.7":
version: 13.5.7
resolution: "@polkadot/x-fetch@npm:13.5.7"
dependencies: