-
Notifications
You must be signed in to change notification settings - Fork 9
/
package-lock.json
2237 lines (2237 loc) · 86.3 KB
/
package-lock.json
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
{
"name": "quasar",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "quasar",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"chain-registry": "^1.63.79",
"cosmjs-types": "^0.9.0",
"cosmjs-utils": "^0.1.0",
"cosmwasm": "^1.1.1",
"osmojs": "^16.14.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.25.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.6.tgz",
"integrity": "sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@chain-registry/types": {
"version": "0.45.62",
"resolved": "https://registry.npmjs.org/@chain-registry/types/-/types-0.45.62.tgz",
"integrity": "sha512-q7AGNgNGKF+hXb/ED67g3jypm+k7nTLVnQ1nEsdq64LeWMfJA9rmkI3a1PAhZq2rx7PBMM2UWKS2BsX+DI+syg==",
"license": "SEE LICENSE IN LICENSE"
},
"node_modules/@confio/ics23": {
"version": "0.6.8",
"resolved": "https://registry.npmjs.org/@confio/ics23/-/ics23-0.6.8.tgz",
"integrity": "sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==",
"license": "Apache-2.0",
"dependencies": {
"@noble/hashes": "^1.0.0",
"protobufjs": "^6.8.8"
}
},
"node_modules/@cosmjs/amino": {
"version": "0.32.3",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.32.3.tgz",
"integrity": "sha512-G4zXl+dJbqrz1sSJ56H/25l5NJEk/pAPIr8piAHgbXYw88OdAOlpA26PQvk2IbSN/rRgVbvlLTNgX2tzz1dyUA==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.3",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/math": "^0.32.3",
"@cosmjs/utils": "^0.32.3"
}
},
"node_modules/@cosmjs/cli": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/cli/-/cli-0.28.13.tgz",
"integrity": "sha512-6mbtKmaamKYgaXblSyLCsyEUJTa0GpZLt+ODfwdEUpEdx/Ebwqt09yuCmk0kOQ/TqmruX8aN/ty1py3Opxa/FQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "0.28.13",
"@cosmjs/cosmwasm-stargate": "0.28.13",
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/faucet-client": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/proto-signing": "0.28.13",
"@cosmjs/stargate": "0.28.13",
"@cosmjs/tendermint-rpc": "0.28.13",
"@cosmjs/utils": "0.28.13",
"axios": "^0.21.2",
"babylon": "^6.18.0",
"chalk": "^4",
"cosmjs-types": "^0.4.0",
"diff": "^4",
"recast": "^0.20",
"ts-node": "^8",
"typescript": "~4.4",
"yargs": "^15.3.1"
},
"bin": {
"cosmjs-cli": "bin/cosmjs-cli"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/amino": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.28.13.tgz",
"integrity": "sha512-IHnH2zGwaY69qT4mVAavr/pfzx6YE+ud1NHJbvVePlbGiz68CXTi5LHR+K0lrKB5mQ7E+ZErWz2mw5U/x+V1wQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/cosmwasm-stargate": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/cosmwasm-stargate/-/cosmwasm-stargate-0.28.13.tgz",
"integrity": "sha512-dVZNOiRd8btQreRUabncGhVXGCS2wToXqxi9l3KEHwCJQ2RWTshuqV+EZAdCaYHE5W6823s2Ol2W/ukA9AXJPw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "0.28.13",
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/proto-signing": "0.28.13",
"@cosmjs/stargate": "0.28.13",
"@cosmjs/tendermint-rpc": "0.28.13",
"@cosmjs/utils": "0.28.13",
"cosmjs-types": "^0.4.0",
"long": "^4.0.0",
"pako": "^2.0.2"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/crypto": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.28.13.tgz",
"integrity": "sha512-ynKfM0q/tMBQMHJby6ad8lR3gkgBKaelQhIsCZTjClsnuC7oYT9y3ThSZCUWr7Pa9h0J8ahU2YV2oFWFVWJQzQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13",
"@noble/hashes": "^1",
"bn.js": "^5.2.0",
"elliptic": "^6.5.3",
"libsodium-wrappers": "^0.7.6"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/encoding": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.28.13.tgz",
"integrity": "sha512-jtXbAYtV77rLHxoIrjGFsvgGjeTKttuHRv6cvuy3toCZzY7JzTclKH5O2g36IIE4lXwD9xwuhGJ2aa6A3dhNkA==",
"license": "Apache-2.0",
"dependencies": {
"base64-js": "^1.3.0",
"bech32": "^1.1.4",
"readonly-date": "^1.0.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/json-rpc": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.28.13.tgz",
"integrity": "sha512-fInSvg7x9P6p+GWqet+TMhrMTM3OWWdLJOGS5w2ryubMjgpR1rLiAx77MdTNkArW+/6sUwku0sN4veM4ENQu6A==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "0.28.13",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/math": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/math/-/math-0.28.13.tgz",
"integrity": "sha512-PDpL8W/kbyeWi0mQ2OruyqE8ZUAdxPs1xCbDX3WXJwy2oU+X2UTbkuweJHVpS9CIqmZulBoWQAmlf6t6zr1N/g==",
"license": "Apache-2.0",
"dependencies": {
"bn.js": "^5.2.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/proto-signing": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.28.13.tgz",
"integrity": "sha512-nSl/2ZLsUJYz3Ad0RY3ihZUgRHIow2OnYqKsESMu+3RA/jTi9bDYhiBu8mNMHI0xrEJry918B2CyI56pOUHdPQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "0.28.13",
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13",
"cosmjs-types": "^0.4.0",
"long": "^4.0.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/socket": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.28.13.tgz",
"integrity": "sha512-lavwGxQ5VdeltyhpFtwCRVfxeWjH5D5mmN7jgx9nuCf3XSFbTcOYxrk2pQ4usenu1Q1KZdL4Yl5RCNrJuHD9Ug==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "0.28.13",
"isomorphic-ws": "^4.0.1",
"ws": "^7",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/stargate": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.28.13.tgz",
"integrity": "sha512-dVBMazDz8/eActHsRcZjDHHptOBMqvibj5CFgEtZBp22gP6ASzoAUXTlkSVk5FBf4sfuUHoff6st134/+PGMAg==",
"license": "Apache-2.0",
"dependencies": {
"@confio/ics23": "^0.6.8",
"@cosmjs/amino": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/proto-signing": "0.28.13",
"@cosmjs/stream": "0.28.13",
"@cosmjs/tendermint-rpc": "0.28.13",
"@cosmjs/utils": "0.28.13",
"cosmjs-types": "^0.4.0",
"long": "^4.0.0",
"protobufjs": "~6.11.3",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/stream": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.28.13.tgz",
"integrity": "sha512-AnjtfwT8NwPPkd3lhZhjOlOzT0Kn9bgEu2IPOZjQ1nmG2bplsr6TJmnwn0dJxHT7UGtex17h6whKB5N4wU37Wg==",
"license": "Apache-2.0",
"dependencies": {
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/tendermint-rpc": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.28.13.tgz",
"integrity": "sha512-GB+ZmfuJIGQm0hsRtLYjeR3lOxF7Z6XyCBR0cX5AAYOZzSEBJjevPgUHD6tLn8zIhvzxaW3/VKnMB+WmlxdH4w==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/json-rpc": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/socket": "0.28.13",
"@cosmjs/stream": "0.28.13",
"@cosmjs/utils": "0.28.13",
"axios": "^0.21.2",
"readonly-date": "^1.0.0",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/@cosmjs/utils": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.28.13.tgz",
"integrity": "sha512-dVeMBiyg+46x7XBZEfJK8yTihphbCFpjVYmLJVqmTsHfJwymQ65cpyW/C+V/LgWARGK8hWQ/aX9HM5Ao8QmMSg==",
"license": "Apache-2.0"
},
"node_modules/@cosmjs/cli/node_modules/axios": {
"version": "0.21.4",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.14.0"
}
},
"node_modules/@cosmjs/cli/node_modules/cosmjs-types": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.4.1.tgz",
"integrity": "sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog==",
"license": "Apache-2.0",
"dependencies": {
"long": "^4.0.0",
"protobufjs": "~6.11.2"
}
},
"node_modules/@cosmjs/cosmwasm-stargate": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/cosmwasm-stargate/-/cosmwasm-stargate-0.32.4.tgz",
"integrity": "sha512-Fuo9BGEiB+POJ5WeRyBGuhyKR1ordvxZGLPuPosFJOH9U0gKMgcjwKMCgAlWFkMlHaTB+tNdA8AifWiHrI7VgA==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"cosmjs-types": "^0.9.0",
"pako": "^2.0.2"
}
},
"node_modules/@cosmjs/cosmwasm-stargate/node_modules/@cosmjs/amino": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.32.4.tgz",
"integrity": "sha512-zKYOt6hPy8obIFtLie/xtygCkH9ZROiQ12UHfKsOkWaZfPQUvVbtgmu6R4Kn1tFLI/SRkw7eqhaogmW/3NYu/Q==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/utils": "^0.32.4"
}
},
"node_modules/@cosmjs/cosmwasm-stargate/node_modules/@cosmjs/tendermint-rpc": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.32.4.tgz",
"integrity": "sha512-MWvUUno+4bCb/LmlMIErLypXxy7ckUuzEmpufYYYd9wgbdCXaTaO08SZzyFM5PI8UJ/0S2AmUrgWhldlbxO8mw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/json-rpc": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/socket": "^0.32.4",
"@cosmjs/stream": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"axios": "^1.6.0",
"readonly-date": "^1.0.0",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/crypto": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.32.4.tgz",
"integrity": "sha512-zicjGU051LF1V9v7bp8p7ovq+VyC91xlaHdsFOTo2oVry3KQikp8L/81RkXmUIT8FxMwdx1T7DmFwVQikcSDIw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"@noble/hashes": "^1",
"bn.js": "^5.2.0",
"elliptic": "^6.5.4",
"libsodium-wrappers-sumo": "^0.7.11"
}
},
"node_modules/@cosmjs/encoding": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.32.4.tgz",
"integrity": "sha512-tjvaEy6ZGxJchiizzTn7HVRiyTg1i4CObRRaTRPknm5EalE13SV+TCHq38gIDfyUeden4fCuaBVEdBR5+ti7Hw==",
"license": "Apache-2.0",
"dependencies": {
"base64-js": "^1.3.0",
"bech32": "^1.1.4",
"readonly-date": "^1.0.0"
}
},
"node_modules/@cosmjs/faucet-client": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/faucet-client/-/faucet-client-0.28.13.tgz",
"integrity": "sha512-M6f0Wbw3hvdfYbVpfGDXwjbRAcCgMRm5slWK6cU8BpotckLvBb0xoBvrhklG/ooz6ZTZfAc2e/EJ8GVhksdvpA==",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.2"
}
},
"node_modules/@cosmjs/faucet-client/node_modules/axios": {
"version": "0.21.4",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
"integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.14.0"
}
},
"node_modules/@cosmjs/json-rpc": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.32.4.tgz",
"integrity": "sha512-/jt4mBl7nYzfJ2J/VJ+r19c92mUKF0Lt0JxM3MXEJl7wlwW5haHAWtzRujHkyYMXOwIR+gBqT2S0vntXVBRyhQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "^0.32.4",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/ledger-amino": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/ledger-amino/-/ledger-amino-0.28.13.tgz",
"integrity": "sha512-KSwYjIFu/KXarvxxEyq3lpcJl5VvV0gAbY+tebeOvuCGHy9Px7CDOLOEHsR3ykJjYWh0hGrYwYmVk9zVHd474A==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "0.28.13",
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13",
"ledger-cosmos-js": "^2.1.8",
"semver": "^7.3.2"
}
},
"node_modules/@cosmjs/ledger-amino/node_modules/@cosmjs/amino": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.28.13.tgz",
"integrity": "sha512-IHnH2zGwaY69qT4mVAavr/pfzx6YE+ud1NHJbvVePlbGiz68CXTi5LHR+K0lrKB5mQ7E+ZErWz2mw5U/x+V1wQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "0.28.13",
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13"
}
},
"node_modules/@cosmjs/ledger-amino/node_modules/@cosmjs/crypto": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.28.13.tgz",
"integrity": "sha512-ynKfM0q/tMBQMHJby6ad8lR3gkgBKaelQhIsCZTjClsnuC7oYT9y3ThSZCUWr7Pa9h0J8ahU2YV2oFWFVWJQzQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/encoding": "0.28.13",
"@cosmjs/math": "0.28.13",
"@cosmjs/utils": "0.28.13",
"@noble/hashes": "^1",
"bn.js": "^5.2.0",
"elliptic": "^6.5.3",
"libsodium-wrappers": "^0.7.6"
}
},
"node_modules/@cosmjs/ledger-amino/node_modules/@cosmjs/encoding": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.28.13.tgz",
"integrity": "sha512-jtXbAYtV77rLHxoIrjGFsvgGjeTKttuHRv6cvuy3toCZzY7JzTclKH5O2g36IIE4lXwD9xwuhGJ2aa6A3dhNkA==",
"license": "Apache-2.0",
"dependencies": {
"base64-js": "^1.3.0",
"bech32": "^1.1.4",
"readonly-date": "^1.0.0"
}
},
"node_modules/@cosmjs/ledger-amino/node_modules/@cosmjs/math": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/math/-/math-0.28.13.tgz",
"integrity": "sha512-PDpL8W/kbyeWi0mQ2OruyqE8ZUAdxPs1xCbDX3WXJwy2oU+X2UTbkuweJHVpS9CIqmZulBoWQAmlf6t6zr1N/g==",
"license": "Apache-2.0",
"dependencies": {
"bn.js": "^5.2.0"
}
},
"node_modules/@cosmjs/ledger-amino/node_modules/@cosmjs/utils": {
"version": "0.28.13",
"resolved": "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.28.13.tgz",
"integrity": "sha512-dVeMBiyg+46x7XBZEfJK8yTihphbCFpjVYmLJVqmTsHfJwymQ65cpyW/C+V/LgWARGK8hWQ/aX9HM5Ao8QmMSg==",
"license": "Apache-2.0"
},
"node_modules/@cosmjs/math": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/math/-/math-0.32.4.tgz",
"integrity": "sha512-++dqq2TJkoB8zsPVYCvrt88oJWsy1vMOuSOKcdlnXuOA/ASheTJuYy4+oZlTQ3Fr8eALDLGGPhJI02W2HyAQaw==",
"license": "Apache-2.0",
"dependencies": {
"bn.js": "^5.2.0"
}
},
"node_modules/@cosmjs/proto-signing": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.32.4.tgz",
"integrity": "sha512-QdyQDbezvdRI4xxSlyM1rSVBO2st5sqtbEIl3IX03uJ7YiZIQHyv6vaHVf1V4mapusCqguiHJzm4N4gsFdLBbQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"cosmjs-types": "^0.9.0"
}
},
"node_modules/@cosmjs/proto-signing/node_modules/@cosmjs/amino": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.32.4.tgz",
"integrity": "sha512-zKYOt6hPy8obIFtLie/xtygCkH9ZROiQ12UHfKsOkWaZfPQUvVbtgmu6R4Kn1tFLI/SRkw7eqhaogmW/3NYu/Q==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/utils": "^0.32.4"
}
},
"node_modules/@cosmjs/socket": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.32.4.tgz",
"integrity": "sha512-davcyYziBhkzfXQTu1l5NrpDYv0K9GekZCC9apBRvL1dvMc9F/ygM7iemHjUA+z8tJkxKxrt/YPjJ6XNHzLrkw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "^0.32.4",
"isomorphic-ws": "^4.0.1",
"ws": "^7",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/stargate": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/stargate/-/stargate-0.32.4.tgz",
"integrity": "sha512-usj08LxBSsPRq9sbpCeVdyLx2guEcOHfJS9mHGCLCXpdAPEIEQEtWLDpEUc0LEhWOx6+k/ChXTc5NpFkdrtGUQ==",
"license": "Apache-2.0",
"dependencies": {
"@confio/ics23": "^0.6.8",
"@cosmjs/amino": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stream": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"cosmjs-types": "^0.9.0",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/stargate/node_modules/@cosmjs/amino": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.32.4.tgz",
"integrity": "sha512-zKYOt6hPy8obIFtLie/xtygCkH9ZROiQ12UHfKsOkWaZfPQUvVbtgmu6R4Kn1tFLI/SRkw7eqhaogmW/3NYu/Q==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/utils": "^0.32.4"
}
},
"node_modules/@cosmjs/stargate/node_modules/@cosmjs/tendermint-rpc": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.32.4.tgz",
"integrity": "sha512-MWvUUno+4bCb/LmlMIErLypXxy7ckUuzEmpufYYYd9wgbdCXaTaO08SZzyFM5PI8UJ/0S2AmUrgWhldlbxO8mw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/json-rpc": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/socket": "^0.32.4",
"@cosmjs/stream": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"axios": "^1.6.0",
"readonly-date": "^1.0.0",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/stream": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/stream/-/stream-0.32.4.tgz",
"integrity": "sha512-Gih++NYHEiP+oyD4jNEUxU9antoC0pFSg+33Hpp0JlHwH0wXhtD3OOKnzSfDB7OIoEbrzLJUpEjOgpCp5Z+W3A==",
"license": "Apache-2.0",
"dependencies": {
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/tendermint-rpc": {
"version": "0.32.3",
"resolved": "https://registry.npmjs.org/@cosmjs/tendermint-rpc/-/tendermint-rpc-0.32.3.tgz",
"integrity": "sha512-xeprW+VR9xKGstqZg0H/KBZoUp8/FfFyS9ljIUTLM/UINjP2MhiwncANPS2KScfJVepGufUKk0/phHUeIBSEkw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.32.3",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/json-rpc": "^0.32.3",
"@cosmjs/math": "^0.32.3",
"@cosmjs/socket": "^0.32.3",
"@cosmjs/stream": "^0.32.3",
"@cosmjs/utils": "^0.32.3",
"axios": "^1.6.0",
"readonly-date": "^1.0.0",
"xstream": "^11.14.0"
}
},
"node_modules/@cosmjs/utils": {
"version": "0.32.4",
"resolved": "https://registry.npmjs.org/@cosmjs/utils/-/utils-0.32.4.tgz",
"integrity": "sha512-D1Yc+Zy8oL/hkUkFUL/bwxvuDBzRGpc4cF7/SkdhxX4iHpSLgdOuTt1mhCh9+kl6NQREy9t7SYZ6xeW5gFe60w==",
"license": "Apache-2.0"
},
"node_modules/@cosmology/lcd": {
"version": "0.13.4",
"resolved": "https://registry.npmjs.org/@cosmology/lcd/-/lcd-0.13.4.tgz",
"integrity": "sha512-llClHHHjOCie9PxnXUOxvMcWi0aVjmzkRXM6IBBXluOczRFFog23rPPfrWZPeT30dIX1SGklp0Fek28O76BkvQ==",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"axios": "1.6.0"
}
},
"node_modules/@cosmology/lcd/node_modules/axios": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.6.0.tgz",
"integrity": "sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.0",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/@ledgerhq/devices": {
"version": "5.51.1",
"resolved": "https://registry.npmjs.org/@ledgerhq/devices/-/devices-5.51.1.tgz",
"integrity": "sha512-4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA==",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/errors": "^5.50.0",
"@ledgerhq/logs": "^5.50.0",
"rxjs": "6",
"semver": "^7.3.5"
}
},
"node_modules/@ledgerhq/errors": {
"version": "5.50.0",
"resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-5.50.0.tgz",
"integrity": "sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==",
"license": "Apache-2.0"
},
"node_modules/@ledgerhq/hw-transport": {
"version": "5.51.1",
"resolved": "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-5.51.1.tgz",
"integrity": "sha512-6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==",
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/devices": "^5.51.1",
"@ledgerhq/errors": "^5.50.0",
"events": "^3.3.0"
}
},
"node_modules/@ledgerhq/logs": {
"version": "5.50.0",
"resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-5.50.0.tgz",
"integrity": "sha512-swKHYCOZUGyVt4ge0u8a7AwNcA//h4nx5wIi0sruGye1IJ5Cva0GyK9L2/WdX+kWVTKp92ZiEo1df31lrWGPgA==",
"license": "Apache-2.0"
},
"node_modules/@noble/hashes": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.5.0.tgz",
"integrity": "sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==",
"license": "MIT",
"engines": {
"node": "^14.21.3 || >=16"
},
"funding": {
"url": "https://paulmillr.com/funding/"
}
},
"node_modules/@protobufjs/aspromise": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/base64": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/codegen": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/eventemitter": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/fetch": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
"integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@protobufjs/aspromise": "^1.1.1",
"@protobufjs/inquire": "^1.1.0"
}
},
"node_modules/@protobufjs/float": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/inquire": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
"integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/path": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
"license": "BSD-3-Clause"
},
"node_modules/@protobufjs/utf8": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
"integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
"license": "BSD-3-Clause"
},
"node_modules/@types/long": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz",
"integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==",
"license": "MIT"
},
"node_modules/@types/node": {
"version": "22.5.2",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.2.tgz",
"integrity": "sha512-acJsPTEqYqulZS/Yp/S3GgeE6GZ0qYODUR8aVr/DkhHQ8l9nd4j5x1/ZJy9/gHrRlFMqkO6i0I3E27Alu4jjPg==",
"license": "MIT",
"dependencies": {
"undici-types": "~6.19.2"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"license": "MIT",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/arg": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
"license": "MIT"
},
"node_modules/ast-types": {
"version": "0.14.2",
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz",
"integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==",
"license": "MIT",
"dependencies": {
"tslib": "^2.0.1"
},
"engines": {
"node": ">=4"
}
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
"license": "MIT"
},
"node_modules/axios": {
"version": "1.7.7",
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz",
"integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.6",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
"license": "MIT",
"bin": {
"babylon": "bin/babylon.js"
}
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"license": "MIT"
},
"node_modules/bech32": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz",
"integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==",
"license": "MIT"
},
"node_modules/bn.js": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz",
"integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==",
"license": "MIT"
},
"node_modules/brorand": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
"integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==",
"license": "MIT"
},
"node_modules/buffer-from": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"license": "MIT"
},
"node_modules/camelcase": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/chain-registry": {
"version": "1.63.79",
"resolved": "https://registry.npmjs.org/chain-registry/-/chain-registry-1.63.79.tgz",
"integrity": "sha512-3fXMRyTqJHtrqTsH7mC9WpurJFFBhO1p+lPo5zNM5gFE0BgrymsQBZcYjbX1ZEfQOpYfU49LbZkXVwGPZwhTZA==",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@chain-registry/types": "^0.45.62"
}
},
"node_modules/chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/cliui": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
"integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
"license": "ISC",
"dependencies": {
"string-width": "^4.2.0",
"strip-ansi": "^6.0.0",
"wrap-ansi": "^6.2.0"
}
},
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"license": "MIT",
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"license": "MIT"
},
"node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"license": "MIT",
"dependencies": {
"delayed-stream": "~1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/cosmjs-types": {
"version": "0.9.0",
"resolved": "https://registry.npmjs.org/cosmjs-types/-/cosmjs-types-0.9.0.tgz",
"integrity": "sha512-MN/yUe6mkJwHnCFfsNPeCfXVhyxHYW6c/xDUzrSbBycYzw++XvWDMJArXp2pLdgD6FQ8DW79vkPjeNKVrXaHeQ==",
"license": "Apache-2.0"
},
"node_modules/cosmjs-utils": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/cosmjs-utils/-/cosmjs-utils-0.1.0.tgz",
"integrity": "sha512-Ao2YhVXN+FqvbKqNeVN6I4njzRsCe3LVuPiLerMrAr6xr4MMABzvZbnY13AK/CYPrFJFJpmBCssocthAxOi59g==",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@babel/runtime": "^7.11.2",
"@cosmjs/amino": "0.29.0",
"@cosmjs/crypto": "0.29.0",
"@cosmjs/proto-signing": "0.29.0",
"@cosmjs/stargate": "0.29.0",
"cosmjs-types": "0.5.1"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/amino": {
"version": "0.29.0",
"resolved": "https://registry.npmjs.org/@cosmjs/amino/-/amino-0.29.0.tgz",
"integrity": "sha512-/ZUVx6nRN5YE36H3SDq9+i8g2nZ8DJQnN9fVRC8rSHQKauNkoEuK4NxTNcQ2o2EBLUT0kyYAFY2550HVsPMrgw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/crypto": "^0.29.0",
"@cosmjs/encoding": "^0.29.0",
"@cosmjs/math": "^0.29.0",
"@cosmjs/utils": "^0.29.0"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/crypto": {
"version": "0.29.0",
"resolved": "https://registry.npmjs.org/@cosmjs/crypto/-/crypto-0.29.0.tgz",
"integrity": "sha512-MPJoebRGh7AcZgbfR25ci7iV+XzJiKwVq4wL8n6M5P2QdrIv7DqqniyFXcBbn9dQjMLMHnOSgT9LRv+VXzUVCA==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/encoding": "^0.29.0",
"@cosmjs/math": "^0.29.0",
"@cosmjs/utils": "^0.29.0",
"@noble/hashes": "^1",
"bn.js": "^5.2.0",
"elliptic": "^6.5.3",
"libsodium-wrappers": "^0.7.6"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/encoding": {
"version": "0.29.5",
"resolved": "https://registry.npmjs.org/@cosmjs/encoding/-/encoding-0.29.5.tgz",
"integrity": "sha512-G4rGl/Jg4dMCw5u6PEZHZcoHnUBlukZODHbm/wcL4Uu91fkn5jVo5cXXZcvs4VCkArVGrEj/52eUgTZCmOBGWQ==",
"license": "Apache-2.0",
"dependencies": {
"base64-js": "^1.3.0",
"bech32": "^1.1.4",
"readonly-date": "^1.0.0"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/json-rpc": {
"version": "0.29.5",
"resolved": "https://registry.npmjs.org/@cosmjs/json-rpc/-/json-rpc-0.29.5.tgz",
"integrity": "sha512-C78+X06l+r9xwdM1yFWIpGl03LhB9NdM1xvZpQHwgCOl0Ir/WV8pw48y3Ez2awAoUBRfTeejPe4KvrE6NoIi/w==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "^0.29.5",
"xstream": "^11.14.0"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/math": {
"version": "0.29.5",
"resolved": "https://registry.npmjs.org/@cosmjs/math/-/math-0.29.5.tgz",
"integrity": "sha512-2GjKcv+A9f86MAWYLUkjhw1/WpRl2R1BTb3m9qPG7lzMA7ioYff9jY5SPCfafKdxM4TIQGxXQlYGewQL16O68Q==",
"license": "Apache-2.0",
"dependencies": {
"bn.js": "^5.2.0"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/proto-signing": {
"version": "0.29.0",
"resolved": "https://registry.npmjs.org/@cosmjs/proto-signing/-/proto-signing-0.29.0.tgz",
"integrity": "sha512-zAdgDz5vRGAfJ5yyKYuTL7qg5UNUT7v4iV1/ZP8ZQn2fLh9QVxViAIovF4r/Y3EEI4JS5uYj/f8UeHMHQSu8hw==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/amino": "^0.29.0",
"@cosmjs/crypto": "^0.29.0",
"@cosmjs/encoding": "^0.29.0",
"@cosmjs/math": "^0.29.0",
"@cosmjs/utils": "^0.29.0",
"cosmjs-types": "^0.5.0",
"long": "^4.0.0"
}
},
"node_modules/cosmjs-utils/node_modules/@cosmjs/socket": {
"version": "0.29.5",
"resolved": "https://registry.npmjs.org/@cosmjs/socket/-/socket-0.29.5.tgz",
"integrity": "sha512-5VYDupIWbIXq3ftPV1LkS5Ya/T7Ol/AzWVhNxZ79hPe/mBfv1bGau/LqIYOm2zxGlgm9hBHOTmWGqNYDwr9LNQ==",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/stream": "^0.29.5",
"isomorphic-ws": "^4.0.1",
"ws": "^7",
"xstream": "^11.14.0"