-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathyarn.lock
More file actions
6436 lines (5791 loc) · 220 KB
/
yarn.lock
File metadata and controls
6436 lines (5791 loc) · 220 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: 9
cacheKey: 10c0
"@acala-network/chopsticks-core@npm:1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks-core@npm:1.3.1"
dependencies:
"@acala-network/chopsticks-executor": "npm:1.3.1"
"@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:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
comlink: "npm:^4.4.2"
eventemitter3: "npm:^5.0.1"
lodash: "npm:^4.18.1"
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: 10c0/bcff4e46ae8d977bf5711872ba059b3eaaf60e457e6803aa69ef43e9830f4842e7ea32d6e2ae932a9ba72b146aedde630b18b0eddbfa9a85632afd7cba7abdca
languageName: node
linkType: hard
"@acala-network/chopsticks-db@npm:1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks-db@npm:1.3.1"
dependencies:
"@acala-network/chopsticks-core": "npm:1.3.1"
"@polkadot/util": "npm:^14.0.1"
idb: "npm:^8.0.3"
reflect-metadata: "npm:^0.2.2"
sqlite3: "npm:^5.1.7"
typeorm: "npm:^0.3.26"
checksum: 10c0/cea9c915eb49db77963746139cc8bf83b3e088c7bc468c4392b532628d39a64214bafeb917526d6bf1df4ef72bf932f8558bbaa86285b3247676828e286d7036
languageName: node
linkType: hard
"@acala-network/chopsticks-executor@npm:1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks-executor@npm:1.3.1"
dependencies:
"@polkadot/util": "npm:^14.0.1"
"@polkadot/wasm-util": "npm:^7.4.1"
checksum: 10c0/1a6e82479944aab6e53d10fdfa63ad03757f573cc396381d66ad2ba356bdeec461df2bd00ac3c2c9759a1f58cad1349c1fe82cf600ddb1732c79be211898531c
languageName: node
linkType: hard
"@acala-network/chopsticks-testing@npm:^1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks-testing@npm:1.3.1"
dependencies:
"@acala-network/chopsticks-utils": "npm:1.3.1"
"@polkadot/api": "npm:^16.4.1"
"@polkadot/types": "npm:^16.4.1"
checksum: 10c0/3054e36df76b9c4af60a292b97a64e71283c3a1a40f02805a5d9aeca6008ca5a6f03254ea1980c461a692ccb1064d2001a6421bd8e4f1da004092530d5d1665a
languageName: node
linkType: hard
"@acala-network/chopsticks-utils@npm:1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks-utils@npm:1.3.1"
dependencies:
"@acala-network/chopsticks": "npm:1.3.1"
"@acala-network/chopsticks-core": "npm:1.3.1"
"@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:^14.0.1"
"@polkadot/types": "npm:^16.4.1"
"@polkadot/util": "npm:^14.0.1"
polkadot-api: "npm:^1.14.1"
checksum: 10c0/0eeb5597eebde02085560ce2536d28fc5144bb1440f6d246969df9ca008dd01de2b8a994f1bfdd0dddce3630a4cc0382db67b92bd2ab7f6707c34a995ac96fca
languageName: node
linkType: hard
"@acala-network/chopsticks@npm:1.3.1, @acala-network/chopsticks@npm:^1.3.1":
version: 1.3.1
resolution: "@acala-network/chopsticks@npm:1.3.1"
dependencies:
"@acala-network/chopsticks-core": "npm:1.3.1"
"@acala-network/chopsticks-db": "npm:1.3.1"
"@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:^14.0.1"
"@polkadot/util-crypto": "npm:^14.0.1"
axios: "npm:^1.15.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.18.1"
ws: "npm:^8.18.3"
yargs: "npm:^18.0.0"
zod: "npm:^3.25.76"
bin:
chopsticks: ./chopsticks.cjs
checksum: 10c0/40aa02f67fae775a092846c065b06804a1785c8755001bda18014fdfae9b08f0ac5ffa49075d6d4b1849f8f7465244fa2b1a736e6d32e44148952b10dd64ce2a
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.26.2":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.28.5"
js-tokens: "npm:^4.0.0"
picocolors: "npm:^1.1.1"
checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.28.5":
version: 7.28.5
resolution: "@babel/helper-validator-identifier@npm:7.28.5"
checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
"@biomejs/biome@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/biome@npm:2.4.12"
dependencies:
"@biomejs/cli-darwin-arm64": "npm:2.4.12"
"@biomejs/cli-darwin-x64": "npm:2.4.12"
"@biomejs/cli-linux-arm64": "npm:2.4.12"
"@biomejs/cli-linux-arm64-musl": "npm:2.4.12"
"@biomejs/cli-linux-x64": "npm:2.4.12"
"@biomejs/cli-linux-x64-musl": "npm:2.4.12"
"@biomejs/cli-win32-arm64": "npm:2.4.12"
"@biomejs/cli-win32-x64": "npm:2.4.12"
dependenciesMeta:
"@biomejs/cli-darwin-arm64":
optional: true
"@biomejs/cli-darwin-x64":
optional: true
"@biomejs/cli-linux-arm64":
optional: true
"@biomejs/cli-linux-arm64-musl":
optional: true
"@biomejs/cli-linux-x64":
optional: true
"@biomejs/cli-linux-x64-musl":
optional: true
"@biomejs/cli-win32-arm64":
optional: true
"@biomejs/cli-win32-x64":
optional: true
bin:
biome: bin/biome
checksum: 10c0/8f03b07f33d7e1efee615945cdc907b7fdc9160d70b204a74ce1b65bdf0ca47c7bfe5e2fafd5b832927f0d4bee4ae3182d93e603e3e5ecf5d91734cff888133b
languageName: node
linkType: hard
"@biomejs/cli-darwin-arm64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-darwin-arm64@npm:2.4.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-darwin-x64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-darwin-x64@npm:2.4.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64-musl@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-linux-arm64-musl@npm:2.4.12"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-arm64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-linux-arm64@npm:2.4.12"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-linux-x64-musl@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-linux-x64-musl@npm:2.4.12"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@biomejs/cli-linux-x64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-linux-x64@npm:2.4.12"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@biomejs/cli-win32-arm64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-win32-arm64@npm:2.4.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@biomejs/cli-win32-x64@npm:2.4.12":
version: 2.4.12
resolution: "@biomejs/cli-win32-x64@npm:2.4.12"
conditions: os=win32 & cpu=x64
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: 10c0/b064889e254e1c895886ec8148ac6e0d9bfa3c0336b9ee58124178308819dcf008f15e2a7abdc89b6c1ac3bdbd8003d8cfdaf363971d41dcce64b28c9714af12
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: 10c0/8547bf4a62dfca0a61b9c6490ea0ea468ec108879892f2e1ebe14dc12e9e6c50ad91b184a186ab5119f47baf631ab4f1f152372b8b89ba4d8d42a8ae5dcb6e44
languageName: node
linkType: hard
"@e2e-test/kusama@workspace:packages/kusama":
version: 0.0.0-use.local
resolution: "@e2e-test/kusama@workspace:packages/kusama"
dependencies:
"@acala-network/chopsticks-testing": "npm:^1.3.1"
"@e2e-test/shared": "workspace:*"
languageName: unknown
linkType: soft
"@e2e-test/networks@workspace:*, @e2e-test/networks@workspace:packages/networks":
version: 0.0.0-use.local
resolution: "@e2e-test/networks@workspace:packages/networks"
dependencies:
"@acala-network/chopsticks-testing": "npm:^1.3.1"
languageName: unknown
linkType: soft
"@e2e-test/polkadot@workspace:packages/polkadot":
version: 0.0.0-use.local
resolution: "@e2e-test/polkadot@workspace:packages/polkadot"
dependencies:
"@acala-network/chopsticks-testing": "npm:^1.3.1"
"@e2e-test/shared": "workspace:*"
languageName: unknown
linkType: soft
"@e2e-test/shared@workspace:*, @e2e-test/shared@workspace:packages/shared":
version: 0.0.0-use.local
resolution: "@e2e-test/shared@workspace:packages/shared"
dependencies:
"@acala-network/chopsticks": "npm:^1.3.1"
"@acala-network/chopsticks-testing": "npm:^1.3.1"
"@e2e-test/networks": "workspace:*"
"@polkadot/api": "npm:^16.5.6"
"@polkadot/types": "npm:^16.5.6"
"@polkadot/types-augment": "npm:^16.5.6"
languageName: unknown
linkType: soft
"@emnapi/core@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/core@npm:1.10.0"
dependencies:
"@emnapi/wasi-threads": "npm:1.2.1"
tslib: "npm:^2.4.0"
checksum: 10c0/f51d08227857b60632de7714d708124f0e100a1462dde6df8221760939aa3204a73193830371830fac0716f3ccd2129f2cac1b17cd7d7958bc4da9018a296edb
languageName: node
linkType: hard
"@emnapi/runtime@npm:1.10.0":
version: 1.10.0
resolution: "@emnapi/runtime@npm:1.10.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/953f14991d1aefb92ee6f8eb27dea725e484791a53a0cb5f47d9e0087b9a2c929ff2e92adf95af15d6ad456db6300c6b761ebf72b50a875b874a83520b3ba093
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.2.1":
version: 1.2.1
resolution: "@emnapi/wasi-threads@npm:1.2.1"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/aix-ppc64@npm:0.25.9"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-arm64@npm:0.25.9"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-arm@npm:0.25.9"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/android-x64@npm:0.25.9"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/darwin-arm64@npm:0.25.9"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/darwin-x64@npm:0.25.9"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@esbuild/freebsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/freebsd-arm64@npm:0.25.9"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/freebsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/freebsd-x64@npm:0.25.9"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/linux-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-arm64@npm:0.25.9"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
"@esbuild/linux-arm@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-arm@npm:0.25.9"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@esbuild/linux-ia32@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-ia32@npm:0.25.9"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
"@esbuild/linux-loong64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-loong64@npm:0.25.9"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
"@esbuild/linux-mips64el@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-mips64el@npm:0.25.9"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
"@esbuild/linux-ppc64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-ppc64@npm:0.25.9"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/linux-riscv64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-riscv64@npm:0.25.9"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
"@esbuild/linux-s390x@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-s390x@npm:0.25.9"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
"@esbuild/linux-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/linux-x64@npm:0.25.9"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
"@esbuild/netbsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/netbsd-arm64@npm:0.25.9"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/netbsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/netbsd-x64@npm:0.25.9"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openbsd-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openbsd-arm64@npm:0.25.9"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
"@esbuild/openbsd-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openbsd-x64@npm:0.25.9"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
"@esbuild/openharmony-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/openharmony-arm64@npm:0.25.9"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
"@esbuild/sunos-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/sunos-x64@npm:0.25.9"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
"@esbuild/win32-arm64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-arm64@npm:0.25.9"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@esbuild/win32-ia32@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-ia32@npm:0.25.9"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@esbuild/win32-x64@npm:0.25.9":
version: 0.25.9
resolution: "@esbuild/win32-x64@npm:0.25.9"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@isaacs/cliui@npm:^9.0.0":
version: 9.0.0
resolution: "@isaacs/cliui@npm:9.0.0"
checksum: 10c0/971063b7296419f85053dacd0a0285dcadaa3dfc139228b23e016c1a9848121ad4aa5e7fcca7522062014e1eb6239a7424188b9f2cba893a79c90aae5710319c
languageName: node
linkType: hard
"@isaacs/fs-minipass@npm:^4.0.0":
version: 4.0.1
resolution: "@isaacs/fs-minipass@npm:4.0.1"
dependencies:
minipass: "npm:^7.0.4"
checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
languageName: node
linkType: hard
"@jridgewell/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: 10c0/9a7d65fb13bd9aec1fbab74cda08496839b7e2ceb31f5ab922b323e94d7c481ce0fc4fd7e12e2610915ed8af51178bdc61e168e92a8c8b8303b030b03489b13b
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: 10c0/3de494219ffeb2c5c38711d0d7bb128097edf91893090a2dbc8ee0b55d092bb7347b1fd0f478486c5eab010e855c73927b1666f2107516d472d24a73017d1194
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.2
resolution: "@jridgewell/resolve-uri@npm:3.1.2"
checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.5.0, @jridgewell/sourcemap-codec@npm:^1.5.5":
version: 1.5.5
resolution: "@jridgewell/sourcemap-codec@npm:1.5.5"
checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.24":
version: 0.3.31
resolution: "@jridgewell/trace-mapping@npm:0.3.31"
dependencies:
"@jridgewell/resolve-uri": "npm:^3.1.0"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:^1.1.4":
version: 1.1.4
resolution: "@napi-rs/wasm-runtime@npm:1.1.4"
dependencies:
"@tybys/wasm-util": "npm:^0.10.1"
peerDependencies:
"@emnapi/core": ^1.7.1
"@emnapi/runtime": ^1.7.1
checksum: 10c0/2e88e1955258949ccf2d18c79975821ad38071b465ef126a5e14110977b97868867b016c1ad046e963cccc42c0bd9db6c8ff5fd1ebb61b87bb3487f339041658
languageName: node
linkType: hard
"@noble/curves@npm:^1.3.0, @noble/curves@npm:^1.9.2, @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: 10c0/150014751ebe8ca06a8654ca2525108452ea9ee0be23430332769f06808cddabfe84f248b6dbf836916bc869c27c2092957eec62c7506d68a1ed0a624017c2a3
languageName: node
linkType: hard
"@noble/curves@npm:^2.2.0":
version: 2.2.0
resolution: "@noble/curves@npm:2.2.0"
dependencies:
"@noble/hashes": "npm:2.2.0"
checksum: 10c0/e545d3bb03ebedd5c04c2cab81342d64f5ce8a4c1019cfe207f3dc69174bc0ad7cfb50effc31bfa8616b8340900f445dd053da7454190428857c4eedd3b51413
languageName: node
linkType: hard
"@noble/curves@npm:~2.0.0":
version: 2.0.1
resolution: "@noble/curves@npm:2.0.1"
dependencies:
"@noble/hashes": "npm:2.0.1"
checksum: 10c0/e0b329eb9229e862d3b7203e0444bd479e9ecf2d5990181908dad416aab69106717ca696fc7b12ad0eb19d710f58c454646b27ce517a4298ab9abc89a9bdb6ee
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: 10c0/06a0b52c81a6fa7f04d67762e08b2c476a00285858150caeaaff4037356dd5e119f45b2a530f638b77a5eeca013168ec1b655db41bae3236cb2e9d511484fc77
languageName: node
linkType: hard
"@noble/hashes@npm:2.0.1, @noble/hashes@npm:~2.0.0":
version: 2.0.1
resolution: "@noble/hashes@npm:2.0.1"
checksum: 10c0/e81769ce21c3b1c80141a3b99bd001f17edea09879aa936692ae39525477386d696101cd573928a304806efb2b9fa751e1dd83241c67d0c84d30091e85c79bdb
languageName: node
linkType: hard
"@noble/hashes@npm:2.2.0, @noble/hashes@npm:^2.0.1, @noble/hashes@npm:^2.2.0":
version: 2.2.0
resolution: "@noble/hashes@npm:2.2.0"
checksum: 10c0/cad8630c504d6b9271984f685cd0af9101b40988fc2dfbe17ccdf068a9941f95cc5c9957d89e9ca4b7ca94c15cb35f93510c5d53a09fbcc83ee503b93d0a1034
languageName: node
linkType: hard
"@npmcli/agent@npm:^3.0.0":
version: 3.0.0
resolution: "@npmcli/agent@npm:3.0.0"
dependencies:
agent-base: "npm:^7.1.0"
http-proxy-agent: "npm:^7.0.0"
https-proxy-agent: "npm:^7.0.1"
lru-cache: "npm:^10.0.1"
socks-proxy-agent: "npm:^8.0.3"
checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
languageName: node
linkType: hard
"@npmcli/fs@npm:^4.0.0":
version: 4.0.0
resolution: "@npmcli/fs@npm:4.0.0"
dependencies:
semver: "npm:^7.3.5"
checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
languageName: node
linkType: hard
"@oxc-project/types@npm:=0.127.0":
version: 0.127.0
resolution: "@oxc-project/types@npm:0.127.0"
checksum: 10c0/52c0947ac64a9ca119fe971f947e784a35ecd14a072fa3f542a58a5f6c42010b53f2bf92731e39b9899b83c990a9517bbd29d1e5a5b7b489e52616685c6a9278
languageName: node
linkType: hard
"@pinojs/redact@npm:^0.4.0":
version: 0.4.0
resolution: "@pinojs/redact@npm:0.4.0"
checksum: 10c0/4b311ba17ee0cf154ff9c39eb063ec04cd0d0017cb3750efcdf06c2d485df3e1095e13e872175993568c5568c23e4508dd877c981bbc9c5ae5e384d569efcdff
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: 10c0/4cfc4a5c49ab3d0c6a1f196cfd4146374768b0243d441c7de8fa7bd28eaab6290f514b98490472cc65dbd080d34369447b3e9302585e1d5c099befd7c8b5e55f
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: 10c0/95f6e0e38d047aca3283550719155ce7304ac00d98911e4ab026daedaf640a63bd83e3d13e17c623fa41ac72f3801382ba21260bcce431c14fbbc06430ecb776
languageName: node
linkType: hard
"@pnpm/npm-conf@npm:^3.0.0":
version: 3.0.2
resolution: "@pnpm/npm-conf@npm:3.0.2"
dependencies:
"@pnpm/config.env-replace": "npm:^1.1.0"
"@pnpm/network.ca-file": "npm:^1.0.1"
config-chain: "npm:^1.1.11"
checksum: 10c0/50026ae4cac7d5d055d4dd4b2886fbc41964db6179406cf2decf625e7a280fbfffd47380df584c085464deba060101169caca5f79e6a062b6c25b527bf60cb67
languageName: node
linkType: hard
"@polka/url@npm:^1.0.0-next.24":
version: 1.0.0-next.29
resolution: "@polka/url@npm:1.0.0-next.29"
checksum: 10c0/0d58e081844095cb029d3c19a659bfefd09d5d51a2f791bc61eba7ea826f13d6ee204a8a448c2f5a855c17df07b37517373ff916dd05801063c0568ae9937684
languageName: node
linkType: hard
"@polkadot-api/cli@npm:0.18.1":
version: 0.18.1
resolution: "@polkadot-api/cli@npm:0.18.1"
dependencies:
"@commander-js/extra-typings": "npm:^14.0.0"
"@polkadot-api/codegen": "npm:0.21.2"
"@polkadot-api/ink-contracts": "npm:0.4.6"
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/known-chains": "npm:0.9.18"
"@polkadot-api/legacy-provider": "npm:0.3.8"
"@polkadot-api/metadata-compatibility": "npm:0.4.4"
"@polkadot-api/observable-client": "npm:0.17.3"
"@polkadot-api/polkadot-sdk-compat": "npm:2.4.1"
"@polkadot-api/sm-provider": "npm:0.1.16"
"@polkadot-api/smoldot": "npm:0.3.15"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/substrate-client": "npm:0.5.0"
"@polkadot-api/utils": "npm:0.2.0"
"@polkadot-api/wasm-executor": "npm:^0.2.3"
"@polkadot-api/ws-provider": "npm:0.7.5"
"@types/node": "npm:^25.0.10"
commander: "npm:^14.0.2"
execa: "npm:^9.6.1"
fs.promises.exists: "npm:^1.1.4"
ora: "npm:^9.1.0"
read-pkg: "npm:^10.0.0"
rxjs: "npm:^7.8.2"
tsc-prog: "npm:^2.3.0"
tsup: "npm:8.5.0"
typescript: "npm:^5.9.3"
write-package: "npm:^7.2.0"
bin:
papi: dist/main.js
polkadot-api: dist/main.js
checksum: 10c0/954255a632eda0831c67a3cd1ad93445067c0289e9d68d2f4ef20befd5e6cb7c1a34eff1d631fb5ec96ed3b4f3fa07a9ef59f169c6413d12e3fd89aceb7d9a39
languageName: node
linkType: hard
"@polkadot-api/codegen@npm:0.21.2":
version: 0.21.2
resolution: "@polkadot-api/codegen@npm:0.21.2"
dependencies:
"@polkadot-api/ink-contracts": "npm:0.4.6"
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/metadata-compatibility": "npm:0.4.4"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/ad3a0ab91b060d37c2d25cfbc212e53ed5493a3b81984175ed1ca7c07f5ad9f8443b724486fd711c6b90bd0f0b0bf740f790a41b5db1703fef1647d90e64f9da
languageName: node
linkType: hard
"@polkadot-api/ink-contracts@npm:0.4.6":
version: 0.4.6
resolution: "@polkadot-api/ink-contracts@npm:0.4.6"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/7a75ce772159610a175e130cea26dc21dcdde70768171315eb67e8800a247f51cc93976844487696537b758fe5fc78de9a6d94efd3c2b53ec3ef36d037b3622b
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider-proxy@npm:0.2.8":
version: 0.2.8
resolution: "@polkadot-api/json-rpc-provider-proxy@npm:0.2.8"
checksum: 10c0/a88b60a7a3417aa7a398daadad25024e2bac94edf2b2f544461bbb5968238550d25e12d07cf0f8489f5417b1858e2b8982c36b1cfccb5fa631a083ed29ed7412
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider-proxy@npm:^0.1.0":
version: 0.1.0
resolution: "@polkadot-api/json-rpc-provider-proxy@npm:0.1.0"
checksum: 10c0/e4b621fbbba5ae035f36932ce2ef6024d157a1612e26d8838ba6b92a78cd4718f4f12baa55ec7c700d213f8ecbe6e14569152ba3254b341b677b9e616c749f59
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider@npm:0.0.1, @polkadot-api/json-rpc-provider@npm:^0.0.1":
version: 0.0.1
resolution: "@polkadot-api/json-rpc-provider@npm:0.0.1"
checksum: 10c0/90dc86693e7ef742c50484f4374d4b4f0eb7b5f7f618cf96a3dfed866fd18edf19132fc750b2944e8300d83c5601343f3876cbe60cd6bb1086301361d682ebd8
languageName: node
linkType: hard
"@polkadot-api/json-rpc-provider@npm:0.0.4":
version: 0.0.4
resolution: "@polkadot-api/json-rpc-provider@npm:0.0.4"
checksum: 10c0/5615394380bff2d8885592c8001055f1b006e3dd2f650b6a0e41ec836d61e903d78cc4ed06297827020523b0eecc9dff0af661fed7ae82523c97e294a2dc2e27
languageName: node
linkType: hard
"@polkadot-api/known-chains@npm:0.9.18":
version: 0.9.18
resolution: "@polkadot-api/known-chains@npm:0.9.18"
checksum: 10c0/d0fae159be69cf8b54e524d05fb321edf2ef6f1d16464ae2b6192376c18590cc5c4f6f093cf8c9bea6a3554ad1d0f485c880efa67cfdccd1b677d636c44da126
languageName: node
linkType: hard
"@polkadot-api/legacy-provider@npm:0.3.8":
version: 0.3.8
resolution: "@polkadot-api/legacy-provider@npm:0.3.8"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/raw-client": "npm:0.1.1"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
peerDependencies:
rxjs: ">=7.8.0"
checksum: 10c0/978f7863be5154e163a37afffe33b571736ae773c9e7824854ff68fd2566f175bdd85b2f4a668b619111be4b6330814b21e48599e85e4c2f3d91f6511c313604
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: 10c0/0c7d22b7a9cc495539f3f4a61d0d77882139bcfbb8159d8ffadbc7f2b6a8dd093f217fd2266df60417bc7b23582d2c3659052e17bb9b1be664abf76edf7ce558
languageName: node
linkType: hard
"@polkadot-api/merkleize-metadata@npm:1.1.29":
version: 1.1.29
resolution: "@polkadot-api/merkleize-metadata@npm:1.1.29"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/647a8d217e2116971ebaa04fb7969d30a0f26f2e6ae0e46848338cdb34186226006cb74f1c425e809d2e481dbbe321fbddc7abaf966e9f104adee96776dfa8de
languageName: node
linkType: hard
"@polkadot-api/metadata-builders@npm:0.13.9":
version: 0.13.9
resolution: "@polkadot-api/metadata-builders@npm:0.13.9"
dependencies:
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/2ff3b6f64ae73980b968168d8497702277cc42ad119c65c1abd1c0bceee53f5e2c7d38a0f042877d49bbca6b93700185bdd529e7382000c777d10aabfe1a5a03
languageName: node
linkType: hard
"@polkadot-api/metadata-builders@npm:0.3.2":
version: 0.3.2
resolution: "@polkadot-api/metadata-builders@npm:0.3.2"
dependencies:
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/ac536e8d5dea4c4e241839750a46d003a86e6149428dbf9bdb794907547fdab219d38c805ba5fa0ea7150a0083c214866e28d7c2ec10621be97d2f8f8b013edf
languageName: node
linkType: hard
"@polkadot-api/metadata-compatibility@npm:0.4.4":
version: 0.4.4
resolution: "@polkadot-api/metadata-compatibility@npm:0.4.4"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
checksum: 10c0/c5ab8ce9bf65ee5827ab80340b55a4049b664304e6dd7c5956398fa6d4dda61040a4816846d2a926b056490e70a40284353cc5c83d9722bc378c06e9552809ac
languageName: node
linkType: hard
"@polkadot-api/observable-client@npm:0.17.3":
version: 0.17.3
resolution: "@polkadot-api/observable-client@npm:0.17.3"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/substrate-client": "npm:0.5.0"
"@polkadot-api/utils": "npm:0.2.0"
peerDependencies:
rxjs: ">=7.8.0"
checksum: 10c0/83224037b3151c85fc40595f80019ac9bb301a91e2877e46ede949b67ff1f336448b9546ff94a3c82a8fed58eadb8eb92cc8c0dd8b74f70c45e1f0292984c95f
languageName: node
linkType: hard
"@polkadot-api/observable-client@npm:^0.3.0":
version: 0.3.2
resolution: "@polkadot-api/observable-client@npm:0.3.2"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.3.2"
"@polkadot-api/substrate-bindings": "npm:0.6.0"
"@polkadot-api/utils": "npm:0.1.0"
peerDependencies:
"@polkadot-api/substrate-client": 0.1.4
rxjs: ">=7.8.0"
checksum: 10c0/9f93fab03c37af0483f5c8487ec5250d366eb401a2c9744c014dfb4c7aa524645ae71f6b0e60761e2bca89bdcd862c119e4ac0e798123d8ee9f037eb2f4aaef3
languageName: node
linkType: hard
"@polkadot-api/pjs-signer@npm:0.6.19":
version: 0.6.19
resolution: "@polkadot-api/pjs-signer@npm:0.6.19"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/signers-common": "npm:0.1.20"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/e112d3eef0ca931155de7692460e4a3e194d9693e94378f46d4f2846ec1398ab42e2a81c634ebf71e54a699fc1c629469ad7a430359cb352e26bd49029c0762c
languageName: node
linkType: hard
"@polkadot-api/polkadot-sdk-compat@npm:2.4.1":
version: 2.4.1
resolution: "@polkadot-api/polkadot-sdk-compat@npm:2.4.1"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
checksum: 10c0/1b9957e786cb2bec7c1c988f8f903c737a25291c784ac1bd66d54b7f7eeb597506da58a7ee35b5f000f16a460b2d6d4f9f2a473e763232c50c54ea4186d1dd25
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: 10c0/26ab65ac02cfc9dcc8b9539f44f0e72f8faa8dbbb7cc68c5922e2ebdf71bcca0641e70f1fb0fec46de4f98f36448164c7025ef68bc21fa635b8bbb15f5731f10
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: 10c0/f551790b8f5197daaa1f9edec27e43c013105ba9340f749888258f3fa8b057d29d646bffe0d362632ca499a7ef59717ff587710a41a46038d10694ff67a30bfe
languageName: node
linkType: hard
"@polkadot-api/signer@npm:0.2.13":
version: 0.2.13
resolution: "@polkadot-api/signer@npm:0.2.13"
dependencies:
"@noble/hashes": "npm:^2.0.1"
"@polkadot-api/merkleize-metadata": "npm:1.1.29"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/signers-common": "npm:0.1.20"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/ba251cf5d77193e19f7d77a5cfc465db556e9e3b3bedc7eb2e363ddcc966f5d41f8034d2b4c68bb52200e406c23911084241fd99ba859a944283eec8b2210e62
languageName: node
linkType: hard
"@polkadot-api/signers-common@npm:0.1.20":
version: 0.1.20
resolution: "@polkadot-api/signers-common@npm:0.1.20"
dependencies:
"@polkadot-api/metadata-builders": "npm:0.13.9"
"@polkadot-api/polkadot-signer": "npm:0.1.6"
"@polkadot-api/substrate-bindings": "npm:0.17.0"
"@polkadot-api/utils": "npm:0.2.0"
checksum: 10c0/09174243eaeecbd4eeae134a3a3c53b41326129a87136941ce0f372efc54ba18f2f492abfe1523814f2422bdd0033afe2b533c25de9cfbcac80b8ea40d59b4da
languageName: node
linkType: hard
"@polkadot-api/sm-provider@npm:0.1.16":
version: 0.1.16
resolution: "@polkadot-api/sm-provider@npm:0.1.16"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.4"
"@polkadot-api/json-rpc-provider-proxy": "npm:0.2.8"
peerDependencies:
"@polkadot-api/smoldot": ">=0.3"
checksum: 10c0/939a8e676cc8f4b5b515e414588a591a3a715a8498d9aaa52554ad12a275942350c05cdf1ee1d9d66ba084aa784326b06c8b1e5206d5b107350c0984df80b172
languageName: node
linkType: hard
"@polkadot-api/smoldot@npm:0.3.15":
version: 0.3.15
resolution: "@polkadot-api/smoldot@npm:0.3.15"
dependencies:
"@types/node": "npm:^24.10.1"
smoldot: "npm:2.0.40"
checksum: 10c0/cd6e8403a56673ff13c1e637f45ecfc71470201518dd0046b0587c7ba0f46ac427daaac666338e1c9c7f4c52089be249545f415cb32f375459fd6a9921f80bc7
languageName: node
linkType: hard
"@polkadot-api/substrate-bindings@npm:0.17.0":
version: 0.17.0
resolution: "@polkadot-api/substrate-bindings@npm:0.17.0"
dependencies:
"@noble/hashes": "npm:^2.0.1"
"@polkadot-api/utils": "npm:0.2.0"
"@scure/base": "npm:^2.0.0"
scale-ts: "npm:^1.6.1"
checksum: 10c0/b346b4922638a822cf5dd0adbfa10600f96f81bca345f73cf0df4f0cd4495b69b14ad33b77c4811a88eb1c7dfa70a2dadc17f3e95776f04cf2c38a98630b48ea
languageName: node
linkType: hard
"@polkadot-api/substrate-bindings@npm:0.6.0":
version: 0.6.0
resolution: "@polkadot-api/substrate-bindings@npm:0.6.0"
dependencies:
"@noble/hashes": "npm:^1.3.1"
"@polkadot-api/utils": "npm:0.1.0"
"@scure/base": "npm:^1.1.1"
scale-ts: "npm:^1.6.0"
checksum: 10c0/6c5d2d4f1120e95b3fb0207ea186e74302b9075671132d62d94d6abcb8b38fe081b8514384c744c3630615caa474764ebdd18968bef73d0c29203946941f1d99
languageName: node
linkType: hard
"@polkadot-api/substrate-client@npm:0.5.0":
version: 0.5.0
resolution: "@polkadot-api/substrate-client@npm:0.5.0"
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: 10c0/6e70bde16d6b6e72adac73b0d71341c5766b47133290b8c6ed7a84779c06c4c4e0bde8667acd34df98d78da2f056fcdcbbc209e3d2f43ebc9af360021bcce23e
languageName: node
linkType: hard
"@polkadot-api/substrate-client@npm:^0.1.2":
version: 0.1.4
resolution: "@polkadot-api/substrate-client@npm:0.1.4"
dependencies:
"@polkadot-api/json-rpc-provider": "npm:0.0.1"
"@polkadot-api/utils": "npm:0.1.0"
checksum: 10c0/7c9138ce52745f7e5f365f35d8caf3c192aee405ee576492eab8c47f5e9d09547a6141cc455ba21e69cf9f0f813fe6f5bcb0763342c33435a7678432961713db
languageName: node
linkType: hard
"@polkadot-api/utils@npm:0.1.0":
version: 0.1.0
resolution: "@polkadot-api/utils@npm:0.1.0"