-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathyarn.lock
More file actions
7138 lines (6421 loc) · 246 KB
/
yarn.lock
File metadata and controls
7138 lines (6421 loc) · 246 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: 8
cacheKey: 10
"@acala-network/chopsticks-core@npm:1.2.5":
version: 1.2.5
resolution: "@acala-network/chopsticks-core@npm:1.2.5"
dependencies:
"@acala-network/chopsticks-executor": "npm:1.2.5"
"@polkadot/rpc-provider": "npm:^16.4.1"
"@polkadot/types": "npm:^16.4.1"
"@polkadot/types-codec": "npm:^16.4.1"
"@polkadot/types-known": "npm:^16.4.1"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
comlink: "npm:^4.4.2"
eventemitter3: "npm:^5.0.1"
lodash: "npm:^4.17.21"
lru-cache: "npm:^11.1.0"
pino: "npm:^9.7.0"
pino-pretty: "npm:^13.0.0"
rxjs: "npm:^7.8.2"
zod: "npm:^3.25.76"
checksum: 10/25e10af36a5eb9d56e6d3922277c37a906dee715d3c071149d25c1b60a80adffe1cf4e479d4892b12a8dcbbd5a4033a4bc2abfcd12520343c9c41478e7a527c2
languageName: node
linkType: hard
"@acala-network/chopsticks-db@npm:1.2.5":
version: 1.2.5
resolution: "@acala-network/chopsticks-db@npm:1.2.5"
dependencies:
"@acala-network/chopsticks-core": "npm:1.2.5"
"@polkadot/util": "npm:^13.5.3"
idb: "npm:^8.0.3"
reflect-metadata: "npm:^0.2.2"
sqlite3: "npm:^5.1.7"
typeorm: "npm:^0.3.26"
checksum: 10/1ed486afbb20102c460361e8d9fae8e10b4902c39aad43959735a7ee8592f0d9745a84c3f3a3e10ae135f309d33fdf27556c31fd32748cad9c775394ff57cb41
languageName: node
linkType: hard
"@acala-network/chopsticks-executor@npm:1.2.5":
version: 1.2.5
resolution: "@acala-network/chopsticks-executor@npm:1.2.5"
dependencies:
"@polkadot/util": "npm:^13.5.3"
"@polkadot/wasm-util": "npm:^7.4.1"
checksum: 10/897da956ac210e115070edeac0f6fcce59acf4c0c566b832a5c3085b536fc434617bc5b0af459b8826bcd3ce2281d65d8c153fb154b765bc00c71f475cddda02
languageName: node
linkType: hard
"@acala-network/chopsticks-testing@npm:^1.2.3":
version: 1.2.5
resolution: "@acala-network/chopsticks-testing@npm:1.2.5"
dependencies:
"@acala-network/chopsticks-utils": "npm:1.2.5"
"@polkadot/api": "npm:^16.4.1"
"@polkadot/types": "npm:^16.4.1"
checksum: 10/0876852812a326952577d793f536e91c5cd5eeb82dbc9176879b747b0aef4fc6452ca08543aebe51bb206533b0cdb7942232288275af9ca04a4e4bb655e0dc20
languageName: node
linkType: hard
"@acala-network/chopsticks-utils@npm:1.2.5":
version: 1.2.5
resolution: "@acala-network/chopsticks-utils@npm:1.2.5"
dependencies:
"@acala-network/chopsticks": "npm:1.2.5"
"@acala-network/chopsticks-core": "npm:1.2.5"
"@polkadot-labs/hdkd": "npm:^0.0.19"
"@polkadot-labs/hdkd-helpers": "npm:^0.0.19"
"@polkadot/api": "npm:^16.4.1"
"@polkadot/api-base": "npm:^16.4.1"
"@polkadot/keyring": "npm:^13.5.3"
"@polkadot/types": "npm:^16.4.1"
"@polkadot/util": "npm:^13.5.3"
polkadot-api: "npm:^1.14.1"
checksum: 10/da5af8b47404c0157cc028f13e0ef58c2f1109f6041664777b285b101bbbc5f6c59b1244749cf2326fbc74ad5e451c16fbf60cc8ecd8d22d5dd4e2b7b525b77e
languageName: node
linkType: hard
"@acala-network/chopsticks@npm:1.2.5, @acala-network/chopsticks@npm:^1.2.3":
version: 1.2.5
resolution: "@acala-network/chopsticks@npm:1.2.5"
dependencies:
"@acala-network/chopsticks-core": "npm:1.2.5"
"@acala-network/chopsticks-db": "npm:1.2.5"
"@dmsnell/diff-match-patch": "npm:^1.1.0"
"@pnpm/npm-conf": "npm:^3.0.0"
"@polkadot/api": "npm:^16.4.1"
"@polkadot/api-augment": "npm:^16.4.1"
"@polkadot/rpc-provider": "npm:^16.4.1"
"@polkadot/types": "npm:^16.4.1"
"@polkadot/util": "npm:^13.5.3"
"@polkadot/util-crypto": "npm:^13.5.3"
axios: "npm:^1.12.0"
comlink: "npm:^4.4.2"
dotenv: "npm:^16.6.1"
global-agent: "npm:^3.0.0"
js-yaml: "npm:^4.1.1"
jsondiffpatch: "npm:^0.7.3"
lodash: "npm:^4.17.21"
ws: "npm:^8.18.3"
yargs: "npm:^18.0.0"
zod: "npm:^3.25.76"
bin:
chopsticks: ./chopsticks.cjs
checksum: 10/71940dbb5da304b54d08e98cf3ce3000df59d7d0ed2749e38fbfe35911518c0d354715f1bf4d5856481bf05bfc908212b2a743bf88c7c4c804b42159040a2f5d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.26.2":
version: 7.26.2
resolution: "@babel/code-frame@npm:7.26.2"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.25.9"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.0.0"
checksum: 10/db2c2122af79d31ca916755331bb4bac96feb2b334cdaca5097a6b467fdd41963b89b14b6836a14f083de7ff887fc78fa1b3c10b14e743d33e12dbfe5ee3d223
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: 10/3f9b649be0c2fd457fa1957b694b4e69532a668866b8a0d81eabfa34ba16dbf3107b39e0e7144c55c3c652bf773ec816af8df4a61273a2bb4eb3145ca9cf478e
languageName: node
linkType: hard
"@commander-js/extra-typings@npm:^14.0.0":
version: 14.0.0
resolution: "@commander-js/extra-typings@npm:14.0.0"
peerDependencies:
commander: ~14.0.0
checksum: 10/66754a659d049430f498fedf7184d22702ffe32cc61318783f58cb584d27e9f9e749920448cc5f66542064afa2de8c9246c39e31d9b0f6ae623358e421f36a87
languageName: node
linkType: hard
"@dmsnell/diff-match-patch@npm:^1.1.0":
version: 1.1.0
resolution: "@dmsnell/diff-match-patch@npm:1.1.0"
checksum: 10/fe4127b57a3f972839688d8b6abf325c2633106a1ee1da900e584c3057ed543797f009749fb6b77879e3dac0096755b09a9a224f9bd97a40eefba8f4665d5ace
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/aix-ppc64@npm:0.25.3"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/android-arm64@npm:0.25.3"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/android-arm@npm:0.25.3"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/android-x64@npm:0.25.3"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/darwin-arm64@npm:0.25.3"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/darwin-x64@npm:0.25.3"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/freebsd-arm64@npm:0.25.3"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/freebsd-x64@npm:0.25.3"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-arm64@npm:0.25.3"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-arm@npm:0.25.3"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-ia32@npm:0.25.3"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-loong64@npm:0.25.3"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-mips64el@npm:0.25.3"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-ppc64@npm:0.25.3"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-riscv64@npm:0.25.3"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-s390x@npm:0.25.3"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/linux-x64@npm:0.25.3"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/netbsd-arm64@npm:0.25.3"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/netbsd-x64@npm:0.25.3"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/openbsd-arm64@npm:0.25.3"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/openbsd-x64@npm:0.25.3"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/sunos-x64@npm:0.25.3"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/win32-arm64@npm:0.25.3"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/win32-ia32@npm:0.25.3"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.3":
version: 0.25.3
resolution: "@esbuild/win32-x64@npm:0.25.3"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.7.0":
version: 4.7.0
resolution: "@eslint-community/eslint-utils@npm:4.7.0"
dependencies:
eslint-visitor-keys: "npm:^3.4.3"
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: 10/43ed5d391526d9f5bbe452aef336389a473026fca92057cf97c576db11401ce9bcf8ef0bf72625bbaf6207ed8ba6bf0dcf4d7e809c24f08faa68a28533c491a7
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1":
version: 4.12.1
resolution: "@eslint-community/regexpp@npm:4.12.1"
checksum: 10/c08f1dd7dd18fbb60bdd0d85820656d1374dd898af9be7f82cb00451313402a22d5e30569c150315b4385907cdbca78c22389b2a72ab78883b3173be317620cc
languageName: node
linkType: hard
"@eslint/config-array@npm:^0.21.0":
version: 0.21.0
resolution: "@eslint/config-array@npm:0.21.0"
dependencies:
"@eslint/object-schema": "npm:^2.1.6"
debug: "npm:^4.3.1"
minimatch: "npm:^3.1.2"
checksum: 10/f5a499e074ecf4b4a5efdca655418a12079d024b77d02fd35868eeb717c5bfdd8e32c6e8e1dd125330233a878026edda8062b13b4310169ba5bfee9623a67aa0
languageName: node
linkType: hard
"@eslint/config-helpers@npm:^0.3.1":
version: 0.3.1
resolution: "@eslint/config-helpers@npm:0.3.1"
checksum: 10/fc1a90ef6180aa4b5187cee04cfc566abb2a32b77ca3e7eeb4312c7388f6898221adaf8451d9ddb22e0b8860d900fefb1eb1435e4f32f8d8732de87f14605f8f
languageName: node
linkType: hard
"@eslint/core@npm:^0.15.2":
version: 0.15.2
resolution: "@eslint/core@npm:0.15.2"
dependencies:
"@types/json-schema": "npm:^7.0.15"
checksum: 10/41d6273bbc6897cca34a2ca4e80a24bf6f1d43519456ebaa3c38f187da2d9e06f442c64f6e2a2813f055dce35e5cea33a21d0ac3b5b0830b7165641c640faf5d
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^3.3.1":
version: 3.3.1
resolution: "@eslint/eslintrc@npm:3.3.1"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^10.0.1"
globals: "npm:^14.0.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: 10/cc240addbab3c5fceaa65b2c8d5d4fd77ddbbf472c2f74f0270b9d33263dc9116840b6099c46b64c9680301146250439b044ed79278a1bcc557da412a4e3c1bb
languageName: node
linkType: hard
"@eslint/js@npm:9.34.0":
version: 9.34.0
resolution: "@eslint/js@npm:9.34.0"
checksum: 10/3bbe8423e2d11e0eeb70a79f5cd25b89a8920cade36e479e4288d1e01043b48a0d737f46d8e5dc91c53afad5bc0edc882cc5a5a024ac1ac31b0b7b4d4a9f16c0
languageName: node
linkType: hard
"@eslint/js@npm:^9.39.2":
version: 9.39.2
resolution: "@eslint/js@npm:9.39.2"
checksum: 10/6b7f676746f3111b5d1b23715319212ab9297868a0fa9980d483c3da8965d5841673aada2d5653e85a3f7156edee0893a7ae7035211b4efdcb2848154bb947f2
languageName: node
linkType: hard
"@eslint/object-schema@npm:^2.1.6":
version: 2.1.6
resolution: "@eslint/object-schema@npm:2.1.6"
checksum: 10/266085c8d3fa6cd99457fb6350dffb8ee39db9c6baf28dc2b86576657373c92a568aec4bae7d142978e798b74c271696672e103202d47a0c148da39154351ed6
languageName: node
linkType: hard
"@eslint/plugin-kit@npm:^0.3.5":
version: 0.3.5
resolution: "@eslint/plugin-kit@npm:0.3.5"
dependencies:
"@eslint/core": "npm:^0.15.2"
levn: "npm:^0.4.1"
checksum: 10/b8552d79c3091446b07d8b87a9a8ccb8cdee4d933c0ed46b8f61029c3382246fec8d04ea7d1e61656d9275263205ccaa40019fd7581bbce897eca3eda42d5dad
languageName: node
linkType: hard
"@gar/promisify@npm:^1.0.1":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 10/052dd232140fa60e81588000cbe729a40146579b361f1070bce63e2a761388a22a16d00beeffc504bd3601cb8e055c57b21a185448b3ed550cf50716f4fd442e
languageName: node
linkType: hard
"@humanfs/core@npm:^0.19.1":
version: 0.19.1
resolution: "@humanfs/core@npm:0.19.1"
checksum: 10/270d936be483ab5921702623bc74ce394bf12abbf57d9145a69e8a0d1c87eb1c768bd2d93af16c5705041e257e6d9cc7529311f63a1349f3678abc776fc28523
languageName: node
linkType: hard
"@humanfs/node@npm:^0.16.6":
version: 0.16.6
resolution: "@humanfs/node@npm:0.16.6"
dependencies:
"@humanfs/core": "npm:^0.19.1"
"@humanwhocodes/retry": "npm:^0.3.0"
checksum: 10/6d43c6727463772d05610aa05c83dab2bfbe78291022ee7a92cb50999910b8c720c76cc312822e2dea2b497aa1b3fef5fe9f68803fc45c9d4ed105874a65e339
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 10/e993950e346331e5a32eefb27948ecdee2a2c4ab3f072b8f566cd213ef485dd50a3ca497050608db91006f5479e43f91a439aef68d2a313bd3ded06909c7c5b3
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.3.0":
version: 0.3.1
resolution: "@humanwhocodes/retry@npm:0.3.1"
checksum: 10/eb457f699529de7f07649679ec9e0353055eebe443c2efe71c6dd950258892475a038e13c6a8c5e13ed1fb538cdd0a8794faa96b24b6ffc4c87fb1fc9f70ad7f
languageName: node
linkType: hard
"@humanwhocodes/retry@npm:^0.4.2":
version: 0.4.2
resolution: "@humanwhocodes/retry@npm:0.4.2"
checksum: 10/8910c4cdf8d46ce406e6f0cb4407ff6cfef70b15039bd5713cc059f32e02fe5119d833cfe2ebc5f522eae42fdd453b6d88f3fa7a1d8c4275aaad6eb3d3e9b117
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: 10/e9ed5fd27c3aec1095e3a16e0c0cf148d1fee55a38665c35f7b3f86a9b5d00d042ddaabc98e8a1cb7463b9378c15f22a94eb35e99469c201453eb8375191f243
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: 10/4412e9e6713c89c1e66d80bb0bb5a2a93192f10477623a27d08f228ba0316bb880affabc5bfe7f838f58a34d26c2c190da726e576cdfc18c49a72e89adabdcf5
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.0"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/902f8261dcf450b4af7b93f9656918e02eec80a2169e155000cb2059f90113dd98f3ccf6efc6072cee1dd84cac48cade51da236972d942babc40e4c23da4d62a
languageName: node
linkType: hard
"@jridgewell/remapping@npm:^2.3.5":
version: 2.3.5
resolution: "@jridgewell/remapping@npm:2.3.5"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.5"
"@jridgewell/trace-mapping": "npm:^0.3.24"
checksum: 10/c2bb01856e65b506d439455f28aceacf130d6c023d1d4e3b48705e88def3571753e1a887daa04b078b562316c92d26ce36408a60534bceca3f830aec88a339ad
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10/97106439d750a409c22c8bff822d648f6a71f3aa9bc8e5129efdc36343cd3096ddc4eeb1c62d2fe48e9bdd4db37b05d4646a17114ecebd3bbcacfa2de51c3c1d
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0":
version: 1.5.0
resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
checksum: 10/4ed6123217569a1484419ac53f6ea0d9f3b57e5b57ab30d7c267bdb27792a27eb0e4b08e84a2680aa55cc2f2b411ffd6ec3db01c44fdc6dc43aca4b55f8374fd
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.25
resolution: "@jridgewell/trace-mapping@npm:0.3.25"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10/dced32160a44b49d531b80a4a2159dceab6b3ddf0c8e95a0deae4b0e894b172defa63d5ac52a19c2068e1fe7d31ea4ba931fbeec103233ecb4208953967120fc
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0, @noble/curves@npm:^1.9.2, @noble/curves@npm:^1.9.7, @noble/curves@npm:~1.9.2":
version: 1.9.7
resolution: "@noble/curves@npm:1.9.7"
dependencies:
"@noble/hashes": "npm:1.8.0"
checksum: 10/3cfe2735ea94972988ca9e217e0ebb2044372a7160b2079bf885da789492a6291fc8bf76ca3d8bf8dee477847ee2d6fac267d1e6c4f555054059f5e8c4865d44
languageName: node
linkType: hard
"@noble/hashes@npm:1.8.0, @noble/hashes@npm:^1.3.1, @noble/hashes@npm:^1.3.3, @noble/hashes@npm:^1.8.0, @noble/hashes@npm:~1.8.0":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
checksum: 10/474b7f56bc6fb2d5b3a42132561e221b0ea4f91e590f4655312ca13667840896b34195e2b53b7f097ec080a1fdd3b58d902c2a8d0fbdf51d2e238b53808a177e
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: 10/775c9a7eb1f88c195dfb3bce70c31d0fe2a12b28b754e25c08a3edb4bc4816bfedb7ac64ef1e730579d078ca19dacf11630e99f8f3c3e0fd7b23caa5fd6d30a6
languageName: node
linkType: hard
"@npmcli/fs@npm:^1.0.0":
version: 1.1.1
resolution: "@npmcli/fs@npm:1.1.1"
dependencies:
"@gar/promisify": "npm:^1.0.1"
semver: "npm:^7.3.5"
checksum: 10/8b5e6d75759b9f1a8b7885913df274c8cbbb1221176872615f2aecedf47b2c36e5dfbf4046ff1a905c9f3592fbd32051b3050b8a897bf03514a1a404b39af074
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: 10/405c4490e1ff11cf299775449a3c254a366a4b1ffc79d87159b0ee7d5558ac9f6a2f8c0735fd6ff3873cef014cb1a44a5f9127cb6a1b2dbc408718cca9365b5a
languageName: node
linkType: hard
"@npmcli/move-file@npm:^1.0.1":
version: 1.1.2
resolution: "@npmcli/move-file@npm:1.1.2"
dependencies:
mkdirp: "npm:^1.0.4"
rimraf: "npm:^3.0.2"
checksum: 10/c96381d4a37448ea280951e46233f7e541058cf57a57d4094dd4bdcaae43fa5872b5f2eb6bfb004591a68e29c5877abe3cdc210cb3588cbf20ab2877f31a7de7
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 10/115e8ceeec6bc69dff2048b35c0ab4f8bbee12d8bb6c1f4af758604586d802b6e669dcb02dda61d078de42c2b4ddce41b3d9e726d7daa6b4b850f4adbf7333ff
languageName: node
linkType: hard
"@pnpm/config.env-replace@npm:^1.1.0":
version: 1.1.0
resolution: "@pnpm/config.env-replace@npm:1.1.0"
checksum: 10/fabe35cede1b72ad12877b8bed32f7c2fcd89e94408792c4d69009b886671db7988a2132bc18b7157489d2d0fd4266a06c9583be3d2e10c847bf06687420cb2a
languageName: node
linkType: hard
"@pnpm/network.ca-file@npm:^1.0.1":
version: 1.0.2
resolution: "@pnpm/network.ca-file@npm:1.0.2"
dependencies:
graceful-fs: "npm:4.2.10"
checksum: 10/d8d0884646500576bd5390464d13db1bb9a62e32a1069293e5bddb2ad8354b354b7e2d2a35e12850025651e795e6a80ce9e601c66312504667b7e3ee7b52becc
languageName: node
linkType: hard
"@pnpm/npm-conf@npm:^3.0.0":
version: 3.0.0
resolution: "@pnpm/npm-conf@npm:3.0.0"
dependencies:
"@pnpm/config.env-replace": "npm:^1.1.0"
"@pnpm/network.ca-file": "npm:^1.0.1"
config-chain: "npm:^1.1.11"
checksum: 10/941b8cb797c9dd88e56898f67d7cfe794888bd58372170642fe90d0719c5ac9d854ea0bce7d640d43795bfa4aed6982319614a776324368e3d2cd5f3cbd6e27c
languageName: node
linkType: hard
"@polkadot-api/cli@npm:0.14.9":
version: 0.14.9
resolution: "@polkadot-api/cli@npm:0.14.9"
dependencies:
"@commander-js/extra-typings": "npm:^14.0.0"
"@noble/hashes": "npm:^1.8.0"
"@polkadot-api/codegen": "npm:0.18.1"
"@polkadot-api/ink-contracts": "npm:0.3.8"
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/known-chains": "npm:0.9.5"
"@polkadot-api/legacy-provider": "npm:0.2.3"
"@polkadot-api/metadata-compatibility": "npm:0.3.3"
"@polkadot-api/observable-client": "npm:0.13.6"
"@polkadot-api/polkadot-sdk-compat": "npm:2.3.3"
"@polkadot-api/sm-provider": "npm:0.1.7"
"@polkadot-api/smoldot": "npm:0.3.10"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/substrate-client": "npm:0.4.4"
"@polkadot-api/utils": "npm:0.2.0"
"@polkadot-api/wasm-executor": "npm:^0.2.1"
"@polkadot-api/ws-provider": "npm:0.5.0"
"@types/node": "npm:^24.3.0"
commander: "npm:^14.0.0"
execa: "npm:^9.6.0"
fs.promises.exists: "npm:^1.1.4"
ora: "npm:^8.2.0"
read-pkg: "npm:^9.0.1"
rxjs: "npm:^7.8.2"
tsc-prog: "npm:^2.3.0"
tsup: "npm:^8.5.0"
typescript: "npm:^5.9.2"
write-package: "npm:^7.1.0"
bin:
papi: dist/main.js
polkadot-api: dist/main.js
checksum: 10/09a11296ee2e1d911622051bf09e67633d2abecf5ef53bd462f13f96b297ec556c856e8674c9b41bc91326f236bb842f6b66e50abe671513e8d5a3baad2f210a
languageName: node
linkType: hard
"@polkadot-api/codegen@npm:0.18.1":
version: 0.18.1
resolution: "@polkadot-api/codegen@npm:0.18.1"
dependencies:
"@polkadot-api/ink-contracts": "npm:0.3.8"
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/metadata-compatibility": "npm:0.3.3"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/80da3a7bb03d1dfecdeadd4947547ebcb85f16e39b45842d3bc3ed0b5bf38bdd1a256aaa42dfdfd020e2c5054ac5ca9bd984ed3202aff21f6f19032d72182e1d
languageName: node
linkType: hard
"@polkadot-api/ink-contracts@npm:0.3.8":
version: 0.3.8
resolution: "@polkadot-api/ink-contracts@npm:0.3.8"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/6d07f7c89d02d85c5928fc4c0d5684357712ce916cbe00ab929206551e32fe70f4070531715e2d2afdfc991253925ffa9a39676324068f8db2c841e97da51656
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider-proxy@npm:0.2.4":
version: 0.2.4
resolution: "@polkadot-api/json-rpc-provider-proxy@npm:0.2.4"
checksum: 10/de12214e4ce2dccd3803b1890c8e9914b486b02c0ba6fbece8c5036f5e5e20770b1947924f0a000f8cbcdb42836c3ca80b513ddcfb4eea7fa70272d3d6a5f1a7
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: 10/1a232337a4f6f32f3ec0350d5aaceaab21547ccee3cca63318d4b9238982efa5ff2406b033c320318c72d067b73508c0a1af21eb47acabaff714c1c21477bafa
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: 10/1f315bdadcba7def7145011132e6127b983c6f91f976be217ad7d555bb96a67f3a270fe4a46e427531822c5d54d353d84a6439d112a99cdfc07013d3b662ee3c
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider@npm:0.0.4":
version: 0.0.4
resolution: "@polkadot-api/json-rpc-provider@npm:0.0.4"
checksum: 10/d5973086fed4309c8d2685cc950b1c694026b33e7def7bafd62d17658508255e89c77f800e063251c893166490675226c65cf9144a20df526ff8343e619a811b
languageName: node
linkType: hard
"@polkadot-api/known-chains@npm:0.9.5":
version: 0.9.5
resolution: "@polkadot-api/known-chains@npm:0.9.5"
checksum: 10/8186b050d7d97d9545ffe63cfe43451fe79896fc404b98363cf2fb70a574aa65859070133bf44f9138a01e2942497c9e2b5a7185c96bcad4ba690c90b8163d39
languageName: node
linkType: hard
"@polkadot-api/legacy-provider@npm:0.2.3":
version: 0.2.3
resolution: "@polkadot-api/legacy-provider@npm:0.2.3"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/raw-client": "npm:0.1.1"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
peerDependencies:
rxjs: ">=7.8.0"
checksum: 10/d3430ac3d258e679a590111af2ffdb4e6a7b3c4092696209bd4799fff117ecac6b6e6f1748c51bbdbdc40dd59225727210089482e226a2298b924b2c5140f53a
languageName: node
linkType: hard
"@polkadot-api/logs-provider@npm:0.0.6":
version: 0.0.6
resolution: "@polkadot-api/logs-provider@npm:0.0.6"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
checksum: 10/7c9e4adfded8a733b0fcbacb95b12f4e2a5c5e890ccfe3624ed937a2a43447b5a845dbd957e30c7fbdf8a034a150c9fca7199a8c6f25e01a2e82a9ad208ae38d
languageName: node
linkType: hard
"@polkadot-api/merkleize-metadata@npm:1.1.22":
version: 1.1.22
resolution: "@polkadot-api/merkleize-metadata@npm:1.1.22"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/a9cd19de31f1eb7a5f4baaeb234f1f366029faf3c4d8159693a413309a46c9400b74dbe6e70bf2123f472842cc1a76b32896dac7792210b5e0ad3ffefac8e2ab
languageName: node
linkType: hard
"@polkadot-api/metadata-builders@npm:0.13.2":
version: 0.13.2
resolution: "@polkadot-api/metadata-builders@npm:0.13.2"
dependencies:
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/8a6dfa1c5f14823d67f318bad39609eb09cbac419844dfa355fa257fd4db5e7784bfab0ed89fcc4b630f004f2e4b09b15a80c952342ac7e80f2736de70577f26
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: 10/874b38e1fb92beea99b98b889143f25671f137e54113767aeabb79ff5cdf7d61cadb0121f08c7a9a40718b924d7c9a1dd700f81e7e287bc55923b0129e2a6160
languageName: node
linkType: hard
"@polkadot-api/metadata-compatibility@npm:0.3.3":
version: 0.3.3
resolution: "@polkadot-api/metadata-compatibility@npm:0.3.3"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
checksum: 10/1a8dcecaf5f65bfad60084f55f3e378142a2c757f01794db4fcd69714020e180222df9f4c75d8f8a93577a68f785210890740ef3c99904bf0ca9826a6f060dae
languageName: node
linkType: hard
"@polkadot-api/observable-client@npm:0.13.6":
version: 0.13.6
resolution: "@polkadot-api/observable-client@npm:0.13.6"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/substrate-client": "npm:0.4.4"
"@polkadot-api/utils": "npm:0.2.0"
peerDependencies:
rxjs: ">=7.8.0"
checksum: 10/b116e1b208d61d781a063810bd8ccfde237f7b8cac953bbd23cb152d3e1bc11afd31156e2e13cb391035ffae387b75973c8ac1ccc1f7285b5a3b787ee20069a6
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: 10/91b95a06e3ddd477c2489110d7cffdcfaf87a222054b437013c701dc43eac6a5d30438b1ac8fb130166ba039a67808e6199ccb3b2eaac7dcf8d2ef7a835f047b
languageName: node
linkType: hard
"@polkadot-api/pjs-signer@npm:0.6.12":
version: 0.6.12
resolution: "@polkadot-api/pjs-signer@npm:0.6.12"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/signers-common": "npm:0.1.13"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/72991545727f305d161bcec492728802b1b0a292728bf1688a155961d10c8031a698847d016fefb2305c2e35c4eba0f52533e351128acb8ddf67021e93cc0aed
languageName: node
linkType: hard
"@polkadot-api/polkadot-sdk-compat@npm:2.3.3":
version: 2.3.3
resolution: "@polkadot-api/polkadot-sdk-compat@npm:2.3.3"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
checksum: 10/331548f758fab0efe49024759f9e6f71cee9b47b99b76a2e73717b5c36f84ca38152e2d239964f4bc5beaf901d5db324b63d40dc98116c4a208f10c899fdff0e
languageName: node
linkType: hard
"@polkadot-api/polkadot-signer@npm:0.1.6":
version: 0.1.6
resolution: "@polkadot-api/polkadot-signer@npm:0.1.6"
checksum: 10/2c1e47a8a4831f0d3078da2a85d63d34d2dba6926198eeabf4ae06df22bcaf2f5d3de16213f06005ccde17403a605577b7637a1bf6edcf65c3b8d239372f21c2
languageName: node
linkType: hard
"@polkadot-api/raw-client@npm:0.1.1":
version: 0.1.1
resolution: "@polkadot-api/raw-client@npm:0.1.1"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
checksum: 10/10b87bbadb13129da2f9319b43d741ce5bf15aea4fab480f00f1e65dfd1c1d6e48778e4ca9c208cd72c191f7e315fab979bf5653059ea8ed9cbf6d4dc9b300a9
languageName: node
linkType: hard
"@polkadot-api/signer@npm:0.2.6":
version: 0.2.6
resolution: "@polkadot-api/signer@npm:0.2.6"
dependencies:
"@noble/hashes": "npm:^1.8.0"
"@polkadot-api/merkleize-metadata": "npm:1.1.22"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/signers-common": "npm:0.1.13"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/37fc1feb9d9ac6ab1e26dc70c9b4797770d0087aac2fac208635b7f27b31c3f32c856c28340db165abd398f62a7c4aaafd960c9a218c93faf7a8a599307f91c7
languageName: node
linkType: hard
"@polkadot-api/signers-common@npm:0.1.13":
version: 0.1.13
resolution: "@polkadot-api/signers-common@npm:0.1.13"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.2"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/substrate-bindings": "npm:0.16.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/e37de03de8c620fa50cf9dbe2ce086c9cf0d4a40788d9ec99c229ec421a6d90358df5b9c2b24bb3733a25d772c1829dfe966b6d06d1e847d63d7fa33c7786937
languageName: node
linkType: hard
"@polkadot-api/sm-provider@npm:0.1.7":
version: 0.1.7
resolution: "@polkadot-api/sm-provider@npm:0.1.7"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/json-rpc-provider-proxy": "npm:0.2.4"
peerDependencies:
"@polkadot-api/smoldot": ">=0.3"
checksum: 10/8d687dcd0596342274f8b44ee7053b29a34f09700313ee221dfe59db16279eb382c1d8f811dae5a1935bc0ea8b0ceb67f1135313a74afb3a776fc69b9e6d108d
languageName: node
linkType: hard
"@polkadot-api/smoldot@npm:0.3.10":
version: 0.3.10
resolution: "@polkadot-api/smoldot@npm:0.3.10"
dependencies:
"@types/node": "npm:^22.15.30"
smoldot: "npm:2.0.36"
checksum: 10/ba828ee34071826ef34223563dbc0528bd64322a5c54f83df0c1de34635b422e8c7d3e6dc12a33a3025bf2a5e87b443cb888d8f4814f2bccf9ea4a91f8830b95
languageName: node
linkType: hard
"@polkadot-api/substrate-bindings@npm:0.16.0":
version: 0.16.0
resolution: "@polkadot-api/substrate-bindings@npm:0.16.0"
dependencies:
"@noble/hashes": "npm:^1.8.0"
"@polkadot-api/utils": "npm:0.2.0"
"@scure/base": "npm:^1.2.6"
scale-ts: "npm:^1.6.1"
checksum: 10/c0bce22f4a47c6949950f742afb5e1a002c11f3229672dd3677c31b8536731efca0b36c0d46c2e93ee75a89e0646b6a3814aa4b90501c493d56cb847dc41e508
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: 10/01926a9083f608514a55c3d23563ebef139e2963d4adbebe7dcd99b65e1a08f1551fc0e147e787a31c749402767333c96eb1399f85a6c71654cfa1cc9d26e445
languageName: node
linkType: hard
"@polkadot-api/substrate-client@npm:0.4.4":
version: 0.4.4
resolution: "@polkadot-api/substrate-client@npm:0.4.4"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/raw-client": "npm:0.1.1"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10/d1e7a9d3d7158134f37a44dce225059a2f346af3bf863091d08dc7a4013cfa3dc5b2f6e486158572b304cba640b2ca73078af98ca2fd42ccab9f6d359507f148
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: 10/e7172696db404676d297cd5661b195de110593769f9ce37f32bdb5576ca00c56d32fcb04172a91102986fdda27a13962d909ad9466869a2991611d658ee6ac92
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.1.0":
version: 0.1.0
resolution: "@polkadot-api/utils@npm:0.1.0"
checksum: 10/c557daea91ddb03e16b93c7c5a75533495c7b77cbbbdc2b4f5e97af0c1e1132a47e434c9c729a08241bd7b3624b6644ac0950f914aa8b29a0f419bf0fd224c7c
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.2.0":
version: 0.2.0
resolution: "@polkadot-api/utils@npm:0.2.0"
checksum: 10/5171c52af86bc85181cf8681342e38a6cbbe049d70f437ab256641a30f2d167d4d1f5f871d13731d9a7e08be5b35c2e981deba4efe6f16f0c57f2309d90bb52c
languageName: node
linkType: hard
"@polkadot-api/wasm-executor@npm:^0.2.1":
version: 0.2.1
resolution: "@polkadot-api/wasm-executor@npm:0.2.1"
checksum: 10/abc2c07e3f2d5ce6ddff3a29596d195136cb83ffac2b55e8481c3d95fc8089d458757b22d2df911979fe6244e7fa48ce5ae6ac655f6a8b563dc40fce29b13fe8
languageName: node
linkType: hard
"@polkadot-api/ws-provider@npm:0.5.0":
version: 0.5.0
resolution: "@polkadot-api/ws-provider@npm:0.5.0"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/json-rpc-provider-proxy": "npm:0.2.4"
ws: "npm:^8.18.3"
checksum: 10/811a1638479fbdcb5df7c69f755edd076848fe41579b2c2a1dd8968f391874410b3027c709b4f9da0de046498d0479b26cc192d1725792de2b4c2258a35e0904
languageName: node
linkType: hard
"@polkadot-labs/hdkd-helpers@npm:^0.0.19":
version: 0.0.19
resolution: "@polkadot-labs/hdkd-helpers@npm:0.0.19"
dependencies:
"@noble/curves": "npm:^1.9.2"
"@noble/hashes": "npm:^1.8.0"
"@scure/base": "npm:^1.2.6"
"@scure/sr25519": "npm:^0.2.0"
scale-ts: "npm:^1.6.1"
checksum: 10/8a7ba49088115bf86fbf6b7a2bfd6d27e7074c8d3be3c35b05cb5d732c243ecdc927e35754ad36a0ca25944b4b4f22c51d1b255d731b302928ada8e4891f8008
languageName: node
linkType: hard
"@polkadot-labs/hdkd-helpers@npm:~0.0.19":
version: 0.0.22
resolution: "@polkadot-labs/hdkd-helpers@npm:0.0.22"
dependencies:
"@noble/curves": "npm:^1.9.7"
"@noble/hashes": "npm:^1.8.0"
"@scure/base": "npm:^1.2.6"
"@scure/sr25519": "npm:^0.2.0"
scale-ts: "npm:^1.6.1"
checksum: 10/e09e51f77530f8308bdba94aafe9bd0e0efb652ea9482bc608d7c0c3e18cbfb72baceb217e20a2a8add9fc642e0e03c3bcc75de3ea9d9e16ab5ed17dc2476ce5
languageName: node
linkType: hard
"@polkadot-labs/hdkd@npm:^0.0.19":
version: 0.0.19