-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8759 lines (7915 loc) · 312 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@adraffy/ens-normalize@npm:^1.10.1":
version: 1.11.0
resolution: "@adraffy/ens-normalize@npm:1.11.0"
checksum: 10c0/5111d0f1a273468cb5661ed3cf46ee58de8f32f84e2ebc2365652e66c1ead82649df94c736804e2b9cfa831d30ef24e1cc3575d970dbda583416d3a98d8870a6
languageName: node
linkType: hard
"@arbitrum/nitro-contracts@npm:^1.2.1":
version: 1.3.0
resolution: "@arbitrum/nitro-contracts@npm:1.3.0"
dependencies:
"@offchainlabs/upgrade-executor": "npm:1.1.0-beta.0"
"@openzeppelin/contracts": "npm:4.5.0"
"@openzeppelin/contracts-upgradeable": "npm:4.5.2"
patch-package: "npm:^6.4.7"
checksum: 10c0/6d0c6eea1890be235324b2c69f69522c02d9309c51579d5baf9acaef46e531eb434d1d341c965b2cea4d8cb2c55c8d02e8161b55124aee445d78ec1b5f9b39cf
languageName: node
linkType: hard
"@arbitrum/sdk@npm:^4.0.0":
version: 4.0.2
resolution: "@arbitrum/sdk@npm:4.0.2"
dependencies:
"@ethersproject/address": "npm:^5.0.8"
"@ethersproject/bignumber": "npm:^5.1.1"
"@ethersproject/bytes": "npm:^5.0.8"
async-mutex: "npm:^0.4.0"
ethers: "npm:^5.1.0"
checksum: 10c0/5b08f7c1992d13b3efe299441ab1d665a6d097b37ba5eb591f9272b9318519e4df9da0c101ec1630b08f9bfc86d17302d95699240b8bf6d7605fdc0785274747
languageName: node
linkType: hard
"@aws-crypto/crc32@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/eab9581d3363af5ea498ae0e72de792f54d8890360e14a9d8261b7b5c55ebe080279fb2556e07994d785341cdaa99ab0b1ccf137832b53b5904cd6928f2b094b
languageName: node
linkType: hard
"@aws-crypto/crc32c@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/crc32c@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/223efac396cdebaf5645568fa9a38cd0c322c960ae1f4276bedfe2e1031d0112e49d7d39225d386354680ecefae29f39af469a84b2ddfa77cb6692036188af77
languageName: node
linkType: hard
"@aws-crypto/sha1-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha1-browser@npm:5.2.0"
dependencies:
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/51fed0bf078c10322d910af179871b7d299dde5b5897873ffbeeb036f427e5d11d23db9794439226544b73901920fd19f4d86bbc103ed73cc0cfdea47a83c6ac
languageName: node
linkType: hard
"@aws-crypto/sha256-browser@npm:5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-browser@npm:5.2.0"
dependencies:
"@aws-crypto/sha256-js": "npm:^5.2.0"
"@aws-crypto/supports-web-crypto": "npm:^5.2.0"
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
"@aws-sdk/util-locate-window": "npm:^3.0.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/05f6d256794df800fe9aef5f52f2ac7415f7f3117d461f85a6aecaa4e29e91527b6fd503681a17136fa89e9dd3d916e9c7e4cfb5eba222875cb6c077bdc1d00d
languageName: node
linkType: hard
"@aws-crypto/sha256-js@npm:5.2.0, @aws-crypto/sha256-js@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/sha256-js@npm:5.2.0"
dependencies:
"@aws-crypto/util": "npm:^5.2.0"
"@aws-sdk/types": "npm:^3.222.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6c48701f8336341bb104dfde3d0050c89c288051f6b5e9bdfeb8091cf3ffc86efcd5c9e6ff2a4a134406b019c07aca9db608128f8d9267c952578a3108db9fd1
languageName: node
linkType: hard
"@aws-crypto/supports-web-crypto@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/supports-web-crypto@npm:5.2.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/4d2118e29d68ca3f5947f1e37ce1fbb3239a0c569cc938cdc8ab8390d595609b5caf51a07c9e0535105b17bf5c52ea256fed705a07e9681118120ab64ee73af2
languageName: node
linkType: hard
"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0":
version: 5.2.0
resolution: "@aws-crypto/util@npm:5.2.0"
dependencies:
"@aws-sdk/types": "npm:^3.222.0"
"@smithy/util-utf8": "npm:^2.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/0362d4c197b1fd64b423966945130207d1fe23e1bb2878a18e361f7743c8d339dad3f8729895a29aa34fff6a86c65f281cf5167c4bf253f21627ae80b6dd2951
languageName: node
linkType: hard
"@aws-sdk/client-kms@npm:^3.577.0":
version: 3.693.0
resolution: "@aws-sdk/client-kms@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.693.0"
"@aws-sdk/client-sts": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f2123a1d165198f39e4b7eb2cab2352c2ad485bc798c44811c811124cebc3b1d3d4d80b7f83a21bce53368cf3a71f12f42862bb8840e49b39c8f02cc7edc7b0a
languageName: node
linkType: hard
"@aws-sdk/client-s3@npm:^3.577.0, @aws-sdk/client-s3@npm:^3.74.0":
version: 3.693.0
resolution: "@aws-sdk/client-s3@npm:3.693.0"
dependencies:
"@aws-crypto/sha1-browser": "npm:5.2.0"
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.693.0"
"@aws-sdk/client-sts": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-bucket-endpoint": "npm:3.693.0"
"@aws-sdk/middleware-expect-continue": "npm:3.693.0"
"@aws-sdk/middleware-flexible-checksums": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-location-constraint": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-sdk-s3": "npm:3.693.0"
"@aws-sdk/middleware-ssec": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/signature-v4-multi-region": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@aws-sdk/xml-builder": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/eventstream-serde-browser": "npm:^3.0.12"
"@smithy/eventstream-serde-config-resolver": "npm:^3.0.9"
"@smithy/eventstream-serde-node": "npm:^3.0.11"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-blob-browser": "npm:^3.1.8"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/hash-stream-node": "npm:^3.1.8"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/md5-js": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
"@smithy/util-waiter": "npm:^3.1.8"
tslib: "npm:^2.6.2"
checksum: 10c0/8d327297fa873628a56b9bac292f12b3fb98f1f745a6c82ce0f7db0017f39b8aafda62f443eeacf013e997e07ad661238e839844065bfec05918c63ba1fd3244
languageName: node
linkType: hard
"@aws-sdk/client-sso-oidc@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sso-oidc@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10c0/5acdcd95c03488ccfd0591ca86daa0b8f66ee5a5f209fb6742273d883ed313ebe482510948defc9f838a8a7fdf3cfa51b8d2991c848771234ac167638e3aea4f
languageName: node
linkType: hard
"@aws-sdk/client-sso@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sso@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/783580af97d9d3fb5d44ef7e5da57ef2e4eca765475cb6105f188aa78f8bb4447f960066c943023e8743ea622d6c716f4c089297c0ba6f109fc9a2cc2e95620d
languageName: node
linkType: hard
"@aws-sdk/client-sts@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/client-sts@npm:3.693.0"
dependencies:
"@aws-crypto/sha256-browser": "npm:5.2.0"
"@aws-crypto/sha256-js": "npm:5.2.0"
"@aws-sdk/client-sso-oidc": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-node": "npm:3.693.0"
"@aws-sdk/middleware-host-header": "npm:3.693.0"
"@aws-sdk/middleware-logger": "npm:3.693.0"
"@aws-sdk/middleware-recursion-detection": "npm:3.693.0"
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/region-config-resolver": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@aws-sdk/util-user-agent-browser": "npm:3.693.0"
"@aws-sdk/util-user-agent-node": "npm:3.693.0"
"@smithy/config-resolver": "npm:^3.0.11"
"@smithy/core": "npm:^2.5.2"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/hash-node": "npm:^3.0.9"
"@smithy/invalid-dependency": "npm:^3.0.9"
"@smithy/middleware-content-length": "npm:^3.0.11"
"@smithy/middleware-endpoint": "npm:^3.2.2"
"@smithy/middleware-retry": "npm:^3.0.26"
"@smithy/middleware-serde": "npm:^3.0.9"
"@smithy/middleware-stack": "npm:^3.0.9"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/url-parser": "npm:^3.0.9"
"@smithy/util-base64": "npm:^3.0.0"
"@smithy/util-body-length-browser": "npm:^3.0.0"
"@smithy/util-body-length-node": "npm:^3.0.0"
"@smithy/util-defaults-mode-browser": "npm:^3.0.26"
"@smithy/util-defaults-mode-node": "npm:^3.0.26"
"@smithy/util-endpoints": "npm:^2.1.5"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-retry": "npm:^3.0.9"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f3c4dcb5315d28d23ef14efb8d128df3d1f7bb6c3ca87e712f303fbd870949ff19a57bcb6173b3d2dafca75a14c9f1a0073d473df5ddbecaf4d3c746b84573e2
languageName: node
linkType: hard
"@aws-sdk/core@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/core@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-middleware": "npm:^3.0.9"
fast-xml-parser: "npm:4.4.1"
tslib: "npm:^2.6.2"
checksum: 10c0/b833a70f171165e41b96140c368f0cf1fea768fdff80fb1436f1b959ebb34f263a8cf490318baa40ecfc6adde64fcb58b0ad4ecaf80febacc5ae915a3f5aaadf
languageName: node
linkType: hard
"@aws-sdk/credential-provider-env@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-env@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/35cac11626846a00310fd119cb1a933a68be15d1c5f8e98cb8e3ef084887f6db5e02af4da54793ff5efe236b9fdb8aae78dae59aa8e7b28f3b62738ca936f3fe
languageName: node
linkType: hard
"@aws-sdk/credential-provider-http@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-http@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/fetch-http-handler": "npm:^4.1.0"
"@smithy/node-http-handler": "npm:^3.3.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-stream": "npm:^3.3.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3c7b1740e6a7a4a9d02520073416f7602eda35830ce35700a9cf7abd0e0deacc0f8a874b2228b573e9dbf73db7776a5e592f2943fb386224fb15a2d6de7314c6
languageName: node
linkType: hard
"@aws-sdk/credential-provider-ini@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-ini@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/credential-provider-env": "npm:3.693.0"
"@aws-sdk/credential-provider-http": "npm:3.693.0"
"@aws-sdk/credential-provider-process": "npm:3.693.0"
"@aws-sdk/credential-provider-sso": "npm:3.693.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10c0/976c4485d13452d5b59add08a30b6f93df8610d85e47b4b3ba28fe563e641411283447eae14fa39fe61ef716d9cfc5916099f41dcf01273ee32d3dad24042343
languageName: node
linkType: hard
"@aws-sdk/credential-provider-node@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-node@npm:3.693.0"
dependencies:
"@aws-sdk/credential-provider-env": "npm:3.693.0"
"@aws-sdk/credential-provider-http": "npm:3.693.0"
"@aws-sdk/credential-provider-ini": "npm:3.693.0"
"@aws-sdk/credential-provider-process": "npm:3.693.0"
"@aws-sdk/credential-provider-sso": "npm:3.693.0"
"@aws-sdk/credential-provider-web-identity": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/credential-provider-imds": "npm:^3.2.6"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/ed7a40457e6839f104ebc09829ee4ec5c1174ca5baef06030c8e8d25eafd280641bd7f43a946b972481d29f71b4f134c33938240ddc4c770ec64404e71f22fb0
languageName: node
linkType: hard
"@aws-sdk/credential-provider-process@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-process@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b4d1ddde85cd1cc43378c487f641fbbcca5106d0a2a44f2484ce5e1ba316659b4293121c4aa07f33cbf776518ce8cfbc3c3e948c649624a8cf8457f5cb48e8b9
languageName: node
linkType: hard
"@aws-sdk/credential-provider-sso@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-sso@npm:3.693.0"
dependencies:
"@aws-sdk/client-sso": "npm:3.693.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/token-providers": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/676d29eade41e8d61fbf204000e362537f46858686087c3bc36b180b9ca760528d0e4a6956ebc546a6bb139fd6c391ac544894930a01d07d0a94b2629a687914
languageName: node
linkType: hard
"@aws-sdk/credential-provider-web-identity@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/credential-provider-web-identity@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sts": ^3.693.0
checksum: 10c0/b3c655d864836b7a2b45bce3b4dbc46be872062989c019d4ee663f2ca1d74ec2d5e1c1917f4d7b4ecdcc5b1d128ad70cf3058e041e47f31a05f768638b50ab8b
languageName: node
linkType: hard
"@aws-sdk/middleware-bucket-endpoint@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/827997c0546867d8080deabac07bcc2a30e0b7895851d2c0c534ec22a793ce5f0110b26c4be03b5ff3d400dcd96c79c7e7fbd26b367865e9bee457fa3ddecd33
languageName: node
linkType: hard
"@aws-sdk/middleware-expect-continue@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-expect-continue@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f88931e01b64d1446d94f6c660c8c65591f8bdc231c78e756018ad7fd58babf46c3088e869a5b152fab542d30dbe0bb8af0823187a5522a0a79db2c82f1c2b1c
languageName: node
linkType: hard
"@aws-sdk/middleware-flexible-checksums@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.693.0"
dependencies:
"@aws-crypto/crc32": "npm:5.2.0"
"@aws-crypto/crc32c": "npm:5.2.0"
"@aws-crypto/util": "npm:5.2.0"
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/is-array-buffer": "npm:^3.0.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b9a0ae3ffde640edf67be0240652ffa673f3a5581ee0f84b33cc67df6eec71aab0e5ea115d3a8fb990b1a128cba72efc59af8d34b2ec8246c8d97ec771378cc8
languageName: node
linkType: hard
"@aws-sdk/middleware-host-header@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-host-header@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/3d4aab67c6aec298220f016679a64a9ddbeb34aae0c0962e229f0b5f08f9e2f9708504ac26c885d8876a977feabaef3310ed9cceb3db5d7d6b20a421c5305779
languageName: node
linkType: hard
"@aws-sdk/middleware-location-constraint@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-location-constraint@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/bcff46a72256c9826fbed40a0a92a1f6bb322b133beb9cc0b66fa0ca5defade680d2388733971f180091d33a21a5807c6ab26e616d95b9c25fc6aaad5247383b
languageName: node
linkType: hard
"@aws-sdk/middleware-logger@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-logger@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/e9560f6643b16afacc4808fc45dce0cee3b7b96169c46694630e456a3d54566efad072be1ded80c7321879930033b04ef39aa93a97c81fe3152f08b6b7bb7db6
languageName: node
linkType: hard
"@aws-sdk/middleware-recursion-detection@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-recursion-detection@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/c4bcb89997f41697996e724e9291492350a2dc765316a107aeec68d695212d6e85f67cb40e7fca00af6ed6109a773de3e31fb8579a885d54ab206cb153012b96
languageName: node
linkType: hard
"@aws-sdk/middleware-sdk-s3@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-sdk-s3@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-arn-parser": "npm:3.693.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/smithy-client": "npm:^3.4.3"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.9"
"@smithy/util-stream": "npm:^3.3.0"
"@smithy/util-utf8": "npm:^3.0.0"
tslib: "npm:^2.6.2"
checksum: 10c0/b0856ff161504aac7f609861e5d6a240d28af00a0583f63eff5699722bb72490285769ef875c535d6b230649ea4526d9e3f3e5b23a0e94d130240a6b169aa4fe
languageName: node
linkType: hard
"@aws-sdk/middleware-ssec@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-ssec@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/f2d3fd7f0ba9820f651ac190004670c2f103fdfb48c7060b30894f73bb75176df119c203774c76a3c94a5fd8cec49ce3cef6e165a49a22f067339fc822198d76
languageName: node
linkType: hard
"@aws-sdk/middleware-user-agent@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/middleware-user-agent@npm:3.693.0"
dependencies:
"@aws-sdk/core": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@aws-sdk/util-endpoints": "npm:3.693.0"
"@smithy/core": "npm:^2.5.2"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/53c9f7038511fe53dd85aa855f4053a8e7792dab9632e39a640d62290c833673bafaf62aa0b22a063f3e6ceeb7d604c0e41554e926ad0c0ed1ddb06f693c4ba0
languageName: node
linkType: hard
"@aws-sdk/region-config-resolver@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/region-config-resolver@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-config-provider": "npm:^3.0.0"
"@smithy/util-middleware": "npm:^3.0.9"
tslib: "npm:^2.6.2"
checksum: 10c0/9618469419809bc685a445594abba42b65933a03393310e54628ebd6c62aa9cb3537fef1198dcec7ad8e5ac366117164c9603f16715e93ceb7a5aa42845f5317
languageName: node
linkType: hard
"@aws-sdk/signature-v4-multi-region@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/signature-v4-multi-region@npm:3.693.0"
dependencies:
"@aws-sdk/middleware-sdk-s3": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/protocol-http": "npm:^4.1.6"
"@smithy/signature-v4": "npm:^4.2.2"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/cb1feef017e79c0163c153488a5a92c89fa6672595e64714878130b300b795f562b9175ba5960844e902904fb6f0ef52994b24a19eb4a3f2a13d71c90baca362
languageName: node
linkType: hard
"@aws-sdk/token-providers@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/token-providers@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/property-provider": "npm:^3.1.9"
"@smithy/shared-ini-file-loader": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
"@aws-sdk/client-sso-oidc": ^3.693.0
checksum: 10c0/bcde9ba087249d88235f6f26ac861ff9eca99d012608f57feae17d5cfc833025018aeea5f718ecc0925e85c41e0720a8b62f3f45b0d98a0b620e3be0370c88f6
languageName: node
linkType: hard
"@aws-sdk/types@npm:3.692.0, @aws-sdk/types@npm:^3.222.0":
version: 3.692.0
resolution: "@aws-sdk/types@npm:3.692.0"
dependencies:
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/dc25a188dd8646a09eb08229a7fa957550f22fae64f11908e44df96d3e41192b666a500d6e55487b8e47fa926569dd3494cc6dcdd22512e4aa827f23650b93e1
languageName: node
linkType: hard
"@aws-sdk/util-arn-parser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-arn-parser@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/dd3ff41885f3c9c69043bf145d9e28ba5d18e71d3ffc5e97f3700fa4f9461d092d33d632eca00236f00e25ebcf39ed1a6900d7b39d2f592c83e38115890ad701
languageName: node
linkType: hard
"@aws-sdk/util-endpoints@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-endpoints@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
"@smithy/util-endpoints": "npm:^2.1.5"
tslib: "npm:^2.6.2"
checksum: 10c0/42177eb0f5b4f5840ecbb332f88bdf44bffdb19be02821ac36a98d96ef1ac051c8837e34fcf5ca62c6bb2481ad1b473e2ce82c2e9589f3745caa7eee09f8fdad
languageName: node
linkType: hard
"@aws-sdk/util-locate-window@npm:^3.0.0":
version: 3.693.0
resolution: "@aws-sdk/util-locate-window@npm:3.693.0"
dependencies:
tslib: "npm:^2.6.2"
checksum: 10c0/68630e3b6e7f47ec05c92a7f2369464f5fcd218d4dc5c4103465681424b64072d290ab565938449c0afa312cfce200e553e4a14d6a411542069d95880f3434f5
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-browser@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-user-agent-browser@npm:3.693.0"
dependencies:
"@aws-sdk/types": "npm:3.692.0"
"@smithy/types": "npm:^3.7.0"
bowser: "npm:^2.11.0"
tslib: "npm:^2.6.2"
checksum: 10c0/6f7c56788e0fd4f02e81e51f78f30c0ee2dfe6e8107f221c068ba1a6e8c2e981352bdc67360f9f0432772b3766cd676c87328c3444b4f5aab01606c8777b8316
languageName: node
linkType: hard
"@aws-sdk/util-user-agent-node@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/util-user-agent-node@npm:3.693.0"
dependencies:
"@aws-sdk/middleware-user-agent": "npm:3.693.0"
"@aws-sdk/types": "npm:3.692.0"
"@smithy/node-config-provider": "npm:^3.1.10"
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
peerDependencies:
aws-crt: ">=1.0.0"
peerDependenciesMeta:
aws-crt:
optional: true
checksum: 10c0/702cbc455dba8f902721bb1333a255d1e54d3c320624311ee30974f7ca2d820830e8a6194b667513da022ee33dd20a3904885494bd2716444ad2da2dd84834e9
languageName: node
linkType: hard
"@aws-sdk/xml-builder@npm:3.693.0":
version: 3.693.0
resolution: "@aws-sdk/xml-builder@npm:3.693.0"
dependencies:
"@smithy/types": "npm:^3.7.0"
tslib: "npm:^2.6.2"
checksum: 10c0/5702a565603a86446d1d882bef2cb96202b65b4ea86fa87bb60b6c063c7ed9d91cd8a2bcb87fbbac99c3e9bec133ced240444c96c87d12e397c5bc6c76f99388
languageName: node
linkType: hard
"@babel/runtime@npm:^7.25.0":
version: 7.26.0
resolution: "@babel/runtime@npm:7.26.0"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 10c0/12c01357e0345f89f4f7e8c0e81921f2a3e3e101f06e8eaa18a382b517376520cd2fa8c237726eb094dab25532855df28a7baaf1c26342b52782f6936b07c287
languageName: node
linkType: hard
"@chain-registry/types@npm:^0.50.14":
version: 0.50.16
resolution: "@chain-registry/types@npm:0.50.16"
checksum: 10c0/a9e8dc1513dc1a8820ce2220b1d0920e932237244da6cb420a7d146d144fd1f84fc18c3ee8d1b83fbfca9a46997853cf4c587cfe51be04101aa9938b9a75fdd3
languageName: node
linkType: hard
"@confio/ics23@npm:^0.6.8":
version: 0.6.8
resolution: "@confio/ics23@npm:0.6.8"
dependencies:
"@noble/hashes": "npm:^1.0.0"
protobufjs: "npm:^6.8.8"
checksum: 10c0/2f3f5032cd6a34c9b2fbd64bbf7e1cdec75ca71f348a770f7b5474b5027b12202bfbcd404eca931efddb5901f769af035a87cb8bddbf3f23d7e5d93c9d3d7f6f
languageName: node
linkType: hard
"@cosmjs/amino@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/amino@npm:0.32.4"
dependencies:
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
checksum: 10c0/cd8e215b0406f5c7b73ab0a21106d06b6f76b1da12f1ab7b612884e1dd8bc626966dc67d4e7580090ade131546cbec70000f854e6596935299d054b788929a7e
languageName: node
linkType: hard
"@cosmjs/cosmwasm-stargate@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/cosmwasm-stargate@npm:0.32.4"
dependencies:
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/proto-signing": "npm:^0.32.4"
"@cosmjs/stargate": "npm:^0.32.4"
"@cosmjs/tendermint-rpc": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
pako: "npm:^2.0.2"
checksum: 10c0/f7e285c51ef8b1098a9ea5ca2546a1e226b4fa0a990d95faa6f3b752f3638b6c55f36a56b6f4b11f0a66fd61e3ae8772921d8e99418218df0b2205efe1c82f37
languageName: node
linkType: hard
"@cosmjs/crypto@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/crypto@npm:0.32.4"
dependencies:
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
"@noble/hashes": "npm:^1"
bn.js: "npm:^5.2.0"
elliptic: "npm:^6.5.4"
libsodium-wrappers-sumo: "npm:^0.7.11"
checksum: 10c0/94e742285eb8c7c5393055ba0635f10c06bf87710e953aedc71e3edc2b8e21a12a0d9b5e8eff37e326765f57c9eb3c7fd358f24f639efad4f1a6624eb8189534
languageName: node
linkType: hard
"@cosmjs/encoding@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/encoding@npm:0.32.4"
dependencies:
base64-js: "npm:^1.3.0"
bech32: "npm:^1.1.4"
readonly-date: "npm:^1.0.0"
checksum: 10c0/4a30d5ae1a2d1247d44bda46101ce208c7666d8801ca9a33de94edc35cc22460c16b4834ec84d5a65ffef5e2a4b58605e0a0a056c46bc0a042979ec84acf20cd
languageName: node
linkType: hard
"@cosmjs/json-rpc@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/json-rpc@npm:0.32.4"
dependencies:
"@cosmjs/stream": "npm:^0.32.4"
xstream: "npm:^11.14.0"
checksum: 10c0/b3ebd240f4fb21260e284d2e503ecc61bac898842187ab717f0efb9a5f21272f161f267cc145629caeb9735f80946844384e2bd410275a4744147a44518c0fa0
languageName: node
linkType: hard
"@cosmjs/math@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/math@npm:0.32.4"
dependencies:
bn.js: "npm:^5.2.0"
checksum: 10c0/91e47015be5634d27d71d14c5a05899fb4992b69db02cab1558376dedf8254f96d5e24f097c5601804ae18ed33c7c25d023653ac2bf9d20250fd3e5637f6b101
languageName: node
linkType: hard
"@cosmjs/proto-signing@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/proto-signing@npm:0.32.4"
dependencies:
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
checksum: 10c0/6915059d2e6dbe1abda4a747c3b1abd47a9eff4f8cb2cf9a5545f939b656b4a15bbde2bfc1364357f9b2a081a066280c3b469f6d13dd5fc51b429b0f90a54913
languageName: node
linkType: hard
"@cosmjs/socket@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/socket@npm:0.32.4"
dependencies:
"@cosmjs/stream": "npm:^0.32.4"
isomorphic-ws: "npm:^4.0.1"
ws: "npm:^7"
xstream: "npm:^11.14.0"
checksum: 10c0/2d94c1fb39016bea3c7c145f4565c8a0fed20c805ac569ea604cd3646c15147b82b8db18a4e3c832d6ae0c3dd14363d4db3d91bcacac922679efba164ed49386
languageName: node
linkType: hard
"@cosmjs/stargate@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/stargate@npm:0.32.4"
dependencies:
"@confio/ics23": "npm:^0.6.8"
"@cosmjs/amino": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/proto-signing": "npm:^0.32.4"
"@cosmjs/stream": "npm:^0.32.4"
"@cosmjs/tendermint-rpc": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
cosmjs-types: "npm:^0.9.0"
xstream: "npm:^11.14.0"
checksum: 10c0/c30a3519516aaa7eae58ba827c80fcf74c7fe7a9d3aa5cc8138c3a2768f5f241f59c2f5cec27e9037b4df12b1c6605b4fac9eadb4de97bd84edddc3a80a02e24
languageName: node
linkType: hard
"@cosmjs/stream@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/stream@npm:0.32.4"
dependencies:
xstream: "npm:^11.14.0"
checksum: 10c0/c677c53f9101c2a36fa03a475d92dea2fa69c475f896751b5e18a5d07087eeecbf6bca2e62a8940003da53fa235a9b2dd78c8257bf19c3f96e3f69fa8d5f183d
languageName: node
linkType: hard
"@cosmjs/tendermint-rpc@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/tendermint-rpc@npm:0.32.4"
dependencies:
"@cosmjs/crypto": "npm:^0.32.4"
"@cosmjs/encoding": "npm:^0.32.4"
"@cosmjs/json-rpc": "npm:^0.32.4"
"@cosmjs/math": "npm:^0.32.4"
"@cosmjs/socket": "npm:^0.32.4"
"@cosmjs/stream": "npm:^0.32.4"
"@cosmjs/utils": "npm:^0.32.4"
axios: "npm:^1.6.0"
readonly-date: "npm:^1.0.0"
xstream: "npm:^11.14.0"
checksum: 10c0/5fae7afcdf98cc7dd36922aa1586254cc8c202cf8fe66804e61d793d31dcff816f40d33f7a0eb72c1b9226c7c361d4848e4ff12d0489f6fa66f47f0c86ae18dd
languageName: node
linkType: hard
"@cosmjs/utils@npm:^0.32.4":
version: 0.32.4
resolution: "@cosmjs/utils@npm:0.32.4"
checksum: 10c0/d5ff8b235094be1150853a715116049f73eb5cdfeea8ce8e22ecccc61ec99792db457404d4307782b1a2f935dcf438f5c485beabfcfbc1dc5df26eb6e6da9062
languageName: node
linkType: hard
"@esbuild/aix-ppc64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/aix-ppc64@npm:0.23.1"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
"@esbuild/android-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm64@npm:0.23.1"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
"@esbuild/android-arm@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-arm@npm:0.23.1"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
"@esbuild/android-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/android-x64@npm:0.23.1"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
"@esbuild/darwin-arm64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-arm64@npm:0.23.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@esbuild/darwin-x64@npm:0.23.1":
version: 0.23.1
resolution: "@esbuild/darwin-x64@npm:0.23.1"
conditions: os=darwin & cpu=x64
languageName: node