-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
4330 lines (3741 loc) · 177 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@aashutoshrathi/word-wrap@^1.2.3":
"integrity" "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA=="
"resolved" "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz"
"version" "1.2.6"
"@adraffy/[email protected]":
"integrity" "sha512-iowxq3U30sghZotgl4s/oJRci6WPBfNO5YYgk2cIOMCHr3LeGPcsZjCEr+33Q4N+oV3OABDAtA+pyvWjbvBifQ=="
"resolved" "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.0.tgz"
"version" "1.9.0"
"@alloc/quick-lru@^5.2.0":
"integrity" "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw=="
"resolved" "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz"
"version" "5.2.0"
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@apollo/client@^3.8.1":
"integrity" "sha512-JGGj/9bdoLEqzatRikDeN8etseY5qeFAY0vSAx/Pd0ePNsaflKzHx6V2NZ0NsGkInq+9IXXX3RLVDf0EotizMA=="
"resolved" "https://registry.npmjs.org/@apollo/client/-/client-3.8.1.tgz"
"version" "3.8.1"
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
"@wry/context" "^0.7.3"
"@wry/equality" "^0.5.6"
"@wry/trie" "^0.4.3"
"graphql-tag" "^2.12.6"
"hoist-non-react-statics" "^3.3.2"
"optimism" "^0.17.5"
"prop-types" "^15.7.2"
"response-iterator" "^0.2.6"
"symbol-observable" "^4.0.0"
"ts-invariant" "^0.10.3"
"tslib" "^2.3.0"
"zen-observable-ts" "^1.2.5"
"@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5":
"integrity" "sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/highlight" "^7.22.10"
"chalk" "^2.4.2"
"@babel/compat-data@^7.22.9":
"integrity" "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz"
"version" "7.22.9"
"@babel/core@^7.22.9":
"integrity" "sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.10"
"@babel/generator" "^7.22.10"
"@babel/helper-compilation-targets" "^7.22.10"
"@babel/helper-module-transforms" "^7.22.9"
"@babel/helpers" "^7.22.10"
"@babel/parser" "^7.22.10"
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.10"
"@babel/types" "^7.22.10"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"semver" "^6.3.1"
"@babel/generator@^7.22.10":
"integrity" "sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/types" "^7.22.10"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.22.10":
"integrity" "sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/compat-data" "^7.22.9"
"@babel/helper-validator-option" "^7.22.5"
"browserslist" "^4.21.9"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-environment-visitor@^7.22.5":
"integrity" "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-function-name@^7.22.5":
"integrity" "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/template" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helper-hoist-variables@^7.22.5":
"integrity" "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-imports@^7.22.5":
"integrity" "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-transforms@^7.22.9":
"integrity" "sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz"
"version" "7.22.9"
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-module-imports" "^7.22.5"
"@babel/helper-simple-access" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.5"
"@babel/helper-plugin-utils@^7.22.5":
"integrity" "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-simple-access@^7.22.5":
"integrity" "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-split-export-declaration@^7.22.6":
"integrity" "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-string-parser@^7.22.5":
"integrity" "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-validator-identifier@^7.22.5":
"integrity" "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-validator-option@^7.22.5":
"integrity" "sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz"
"version" "7.22.5"
"@babel/helpers@^7.22.10":
"integrity" "sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/template" "^7.22.5"
"@babel/traverse" "^7.22.10"
"@babel/types" "^7.22.10"
"@babel/highlight@^7.22.10":
"integrity" "sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/helper-validator-identifier" "^7.22.5"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.22.10", "@babel/parser@^7.22.5":
"integrity" "sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz"
"version" "7.22.10"
"@babel/plugin-transform-react-jsx-self@^7.22.5":
"integrity" "sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-transform-react-jsx-source@^7.22.5":
"integrity" "sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.22.6":
"integrity" "sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"regenerator-runtime" "^0.14.0"
"@babel/template@^7.22.5":
"integrity" "sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/code-frame" "^7.22.5"
"@babel/parser" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/traverse@^7.22.10":
"integrity" "sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/code-frame" "^7.22.10"
"@babel/generator" "^7.22.10"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-hoist-variables" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/parser" "^7.22.10"
"@babel/types" "^7.22.10"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.22.10", "@babel/types@^7.22.5":
"integrity" "sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz"
"version" "7.22.10"
dependencies:
"@babel/helper-string-parser" "^7.22.5"
"@babel/helper-validator-identifier" "^7.22.5"
"to-fast-properties" "^2.0.0"
"@coinbase/wallet-sdk@^3.6.6":
"integrity" "sha512-LjyoDCB+7p0waQXfK+fUgcAs3Ezk6S6e+LYaoFjpJ6c9VTop3NyZF40Pi7df4z7QJohCwzuIDjz0Rhtig6Y7Pg=="
"resolved" "https://registry.npmjs.org/@coinbase/wallet-sdk/-/wallet-sdk-3.7.1.tgz"
"version" "3.7.1"
dependencies:
"@metamask/safe-event-emitter" "2.0.0"
"@solana/web3.js" "^1.70.1"
"bind-decorator" "^1.0.11"
"bn.js" "^5.1.1"
"buffer" "^6.0.3"
"clsx" "^1.1.0"
"eth-block-tracker" "6.1.0"
"eth-json-rpc-filters" "5.1.0"
"eth-rpc-errors" "4.0.2"
"json-rpc-engine" "6.1.0"
"keccak" "^3.0.1"
"preact" "^10.5.9"
"qs" "^6.10.3"
"rxjs" "^6.6.3"
"sha.js" "^2.4.11"
"stream-browserify" "^3.0.0"
"util" "^0.12.4"
"@esbuild/[email protected]":
"integrity" "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA=="
"resolved" "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz"
"version" "0.18.20"
"@eslint-community/eslint-utils@^4.2.0":
"integrity" "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA=="
"resolved" "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"eslint-visitor-keys" "^3.3.0"
"@eslint-community/regexpp@^4.6.1":
"integrity" "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw=="
"resolved" "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz"
"version" "4.6.2"
"@eslint/eslintrc@^2.1.1":
"integrity" "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.6.0"
"globals" "^13.19.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@eslint/js@^8.46.0":
"integrity" "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA=="
"resolved" "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz"
"version" "8.46.0"
"@graphql-typed-document-node/core@^3.1.1":
"integrity" "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ=="
"resolved" "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz"
"version" "3.2.0"
"@humanwhocodes/config-array@^0.11.10":
"integrity" "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz"
"version" "0.11.10"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.1.0":
"integrity" "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
"version" "3.1.1"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"
"version" "0.3.19"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@ledgerhq/connect-kit-loader@^1.1.0":
"integrity" "sha512-mscwGroSJQrCTjtNGBu+18FQbZYA4+q6Tyx6K7CXHl6AwgZKbWfZYdgP2F+fyZcRUdGRsMX8QtvU61VcGGtO1A=="
"resolved" "https://registry.npmjs.org/@ledgerhq/connect-kit-loader/-/connect-kit-loader-1.1.2.tgz"
"version" "1.1.2"
"@lit-labs/ssr-dom-shim@^1.0.0", "@lit-labs/ssr-dom-shim@^1.1.0":
"integrity" "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ=="
"resolved" "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz"
"version" "1.1.1"
"@lit/reactive-element@^1.3.0", "@lit/reactive-element@^1.6.0":
"integrity" "sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ=="
"resolved" "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.3.tgz"
"version" "1.6.3"
dependencies:
"@lit-labs/ssr-dom-shim" "^1.0.0"
"@metamask/safe-event-emitter@^2.0.0", "@metamask/[email protected]":
"integrity" "sha512-/kSXhY692qiV1MXu6EeOZvg5nECLclxNXcKCxJ3cXQgYuRymRHpdx/t7JXfsK+JLjwA1e1c1/SBrlQYpusC29Q=="
"resolved" "https://registry.npmjs.org/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz"
"version" "2.0.0"
"@metamask/utils@^3.0.1":
"integrity" "sha512-9cIRrfkWvHblSiNDVXsjivqa9Ak0RYo/1H6tqTqTbAx+oBK2Sva0lWDHxGchOqA7bySGUJKAWSNJvH6gdHZ0gQ=="
"resolved" "https://registry.npmjs.org/@metamask/utils/-/utils-3.6.0.tgz"
"version" "3.6.0"
dependencies:
"@types/debug" "^4.1.7"
"debug" "^4.3.4"
"semver" "^7.3.8"
"superstruct" "^1.0.3"
"@motionone/animation@^10.15.1":
"integrity" "sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ=="
"resolved" "https://registry.npmjs.org/@motionone/animation/-/animation-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/easing" "^10.15.1"
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/dom@^10.16.2":
"integrity" "sha512-bnuHdNbge1FutZXv+k7xub9oPWcF0hsu8y1HTH/qg6av58YI0VufZ3ngfC7p2xhMJMnoh0LXFma2EGTgPeCkeg=="
"resolved" "https://registry.npmjs.org/@motionone/dom/-/dom-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/animation" "^10.15.1"
"@motionone/generators" "^10.15.1"
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@motionone/easing@^10.15.1":
"integrity" "sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw=="
"resolved" "https://registry.npmjs.org/@motionone/easing/-/easing-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/generators@^10.15.1":
"integrity" "sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ=="
"resolved" "https://registry.npmjs.org/@motionone/generators/-/generators-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/types" "^10.15.1"
"@motionone/utils" "^10.15.1"
"tslib" "^2.3.1"
"@motionone/svelte@^10.16.2":
"integrity" "sha512-38xsroKrfK+aHYhuQlE6eFcGy0EwrB43Q7RGjF73j/kRUTcLNu/LAaKiLLsN5lyqVzCgTBVt4TMT/ShWbTbc5Q=="
"resolved" "https://registry.npmjs.org/@motionone/svelte/-/svelte-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/dom" "^10.16.2"
"tslib" "^2.3.1"
"@motionone/types@^10.15.1":
"integrity" "sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA=="
"resolved" "https://registry.npmjs.org/@motionone/types/-/types-10.15.1.tgz"
"version" "10.15.1"
"@motionone/utils@^10.15.1":
"integrity" "sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw=="
"resolved" "https://registry.npmjs.org/@motionone/utils/-/utils-10.15.1.tgz"
"version" "10.15.1"
dependencies:
"@motionone/types" "^10.15.1"
"hey-listen" "^1.0.8"
"tslib" "^2.3.1"
"@motionone/vue@^10.16.2":
"integrity" "sha512-7/dEK/nWQXOkJ70bqb2KyNfSWbNvWqKKq1C8juj+0Mg/AorgD8O5wE3naddK0G+aXuNMqRuc4jlsYHHWHtIzVw=="
"resolved" "https://registry.npmjs.org/@motionone/vue/-/vue-10.16.2.tgz"
"version" "10.16.2"
dependencies:
"@motionone/dom" "^10.16.2"
"tslib" "^2.3.1"
"@noble/curves@^1.0.0":
"integrity" "sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@noble/hashes" "1.3.1"
"@noble/curves@~1.0.0":
"integrity" "sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@noble/hashes" "1.3.0"
"@noble/[email protected]":
"integrity" "sha512-2upgEu0iLiDVDZkNLeFV2+ht0BAVgQnEmCk6JsOch9Rp8xfkMCbvbAZlA2pBHQc73dbl+vFOXfqkf4uemdn0bw=="
"resolved" "https://registry.npmjs.org/@noble/curves/-/curves-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"@noble/hashes" "1.3.0"
"@noble/hashes@^1.3.1", "@noble/hashes@~1.3.0", "@noble/[email protected]":
"integrity" "sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.1.tgz"
"version" "1.3.1"
"@noble/[email protected]":
"integrity" "sha512-ilHEACi9DwqJB0pw7kv+Apvh50jiiSyR/cQ3y4W7lOR5mhvn/50FLUfsnfJz0BDZtl/RR16kXvptiv6q1msYZg=="
"resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.0.tgz"
"version" "1.3.0"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@remix-run/[email protected]":
"integrity" "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A=="
"resolved" "https://registry.npmjs.org/@remix-run/router/-/router-1.7.2.tgz"
"version" "1.7.2"
"@safe-global/safe-apps-provider@^0.17.1":
"integrity" "sha512-lYfRqrbbK1aKU1/UGkYWc/X7PgySYcumXKc5FB2uuwAs2Ghj8uETuW5BrwPqyjBknRxutFbTv+gth/JzjxAhdQ=="
"resolved" "https://registry.npmjs.org/@safe-global/safe-apps-provider/-/safe-apps-provider-0.17.1.tgz"
"version" "0.17.1"
dependencies:
"@safe-global/safe-apps-sdk" "8.0.0"
"events" "^3.3.0"
"@safe-global/safe-apps-sdk@^8.0.0":
"integrity" "sha512-XJbEPuaVc7b9n23MqlF6c+ToYIS3f7P2Sel8f3cSBQ9WORE4xrSuvhMpK9fDSFqJ7by/brc+rmJR/5HViRr0/w=="
"resolved" "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.1.0.tgz"
"version" "8.1.0"
dependencies:
"@safe-global/safe-gateway-typescript-sdk" "^3.5.3"
"viem" "^1.0.0"
"@safe-global/[email protected]":
"integrity" "sha512-gYw0ki/EAuV1oSyMxpqandHjnthZjYYy+YWpTAzf8BqfXM3ItcZLpjxfg+3+mXW8HIO+3jw6T9iiqEXsqHaMMw=="
"resolved" "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@safe-global/safe-gateway-typescript-sdk" "^3.5.3"
"viem" "^1.0.0"
"@safe-global/safe-gateway-typescript-sdk@^3.5.3":
"integrity" "sha512-CiGWIHgIaOdICpDxp05Jw3OPslWTu8AnL0PhrCT1xZgIO86NlMMLzkGbeycJ4FHpTjA999O791Oxp4bZPIjgHA=="
"resolved" "https://registry.npmjs.org/@safe-global/safe-gateway-typescript-sdk/-/safe-gateway-typescript-sdk-3.8.0.tgz"
"version" "3.8.0"
dependencies:
"cross-fetch" "^3.1.5"
"@scure/base@~1.1.0":
"integrity" "sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA=="
"resolved" "https://registry.npmjs.org/@scure/base/-/base-1.1.1.tgz"
"version" "1.1.1"
"@scure/[email protected]":
"integrity" "sha512-bcKpo1oj54hGholplGLpqPHRbIsnbixFtc06nwuNM5/dwSXOq/AAYoIBRsBmnZJSdfeNW5rnff7NTAz3ZCqR9Q=="
"resolved" "https://registry.npmjs.org/@scure/bip32/-/bip32-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"@noble/curves" "~1.0.0"
"@noble/hashes" "~1.3.0"
"@scure/base" "~1.1.0"
"@scure/[email protected]":
"integrity" "sha512-SX/uKq52cuxm4YFXWFaVByaSHJh2w3BnokVSeUJVCv6K7WulT9u2BuNRBhuFl8vAuYnzx9bEu9WgpcNYTrYieg=="
"resolved" "https://registry.npmjs.org/@scure/bip39/-/bip39-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@noble/hashes" "~1.3.0"
"@scure/base" "~1.1.0"
"@solana/buffer-layout@^4.0.0":
"integrity" "sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA=="
"resolved" "https://registry.npmjs.org/@solana/buffer-layout/-/buffer-layout-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"buffer" "~6.0.3"
"@solana/web3.js@^1.70.1":
"integrity" "sha512-up5VG1dK+GPhykmuMIozJZBbVqpm77vbOG6/r5dS7NBGZonwHfTLdBbsYc3rjmaQ4DpCXUa3tUc4RZHRORvZrw=="
"resolved" "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.78.4.tgz"
"version" "1.78.4"
dependencies:
"@babel/runtime" "^7.22.6"
"@noble/curves" "^1.0.0"
"@noble/hashes" "^1.3.1"
"@solana/buffer-layout" "^4.0.0"
"agentkeepalive" "^4.3.0"
"bigint-buffer" "^1.1.5"
"bn.js" "^5.2.1"
"borsh" "^0.7.0"
"bs58" "^4.0.1"
"buffer" "6.0.3"
"fast-stable-stringify" "^1.0.0"
"jayson" "^4.1.0"
"node-fetch" "^2.6.12"
"rpc-websockets" "^7.5.1"
"superstruct" "^0.14.2"
"@stablelib/aead@^1.0.1":
"integrity" "sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg=="
"resolved" "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/binary@^1.0.1":
"integrity" "sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q=="
"resolved" "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/int" "^1.0.1"
"@stablelib/bytes@^1.0.1":
"integrity" "sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ=="
"resolved" "https://registry.npmjs.org/@stablelib/bytes/-/bytes-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/chacha@^1.0.1":
"integrity" "sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg=="
"resolved" "https://registry.npmjs.org/@stablelib/chacha/-/chacha-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/[email protected]":
"integrity" "sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA=="
"resolved" "https://registry.npmjs.org/@stablelib/chacha20poly1305/-/chacha20poly1305-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/aead" "^1.0.1"
"@stablelib/binary" "^1.0.1"
"@stablelib/chacha" "^1.0.1"
"@stablelib/constant-time" "^1.0.1"
"@stablelib/poly1305" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/constant-time@^1.0.1":
"integrity" "sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg=="
"resolved" "https://registry.npmjs.org/@stablelib/constant-time/-/constant-time-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/ed25519@^1.0.2":
"integrity" "sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg=="
"resolved" "https://registry.npmjs.org/@stablelib/ed25519/-/ed25519-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"@stablelib/random" "^1.0.2"
"@stablelib/sha512" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/hash@^1.0.1":
"integrity" "sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg=="
"resolved" "https://registry.npmjs.org/@stablelib/hash/-/hash-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/[email protected]":
"integrity" "sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g=="
"resolved" "https://registry.npmjs.org/@stablelib/hkdf/-/hkdf-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/hash" "^1.0.1"
"@stablelib/hmac" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/hmac@^1.0.1":
"integrity" "sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA=="
"resolved" "https://registry.npmjs.org/@stablelib/hmac/-/hmac-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/constant-time" "^1.0.1"
"@stablelib/hash" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/int@^1.0.1":
"integrity" "sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w=="
"resolved" "https://registry.npmjs.org/@stablelib/int/-/int-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/keyagreement@^1.0.1":
"integrity" "sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg=="
"resolved" "https://registry.npmjs.org/@stablelib/keyagreement/-/keyagreement-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/bytes" "^1.0.1"
"@stablelib/poly1305@^1.0.1":
"integrity" "sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA=="
"resolved" "https://registry.npmjs.org/@stablelib/poly1305/-/poly1305-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/constant-time" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/random@^1.0.1", "@stablelib/random@^1.0.2":
"integrity" "sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w=="
"resolved" "https://registry.npmjs.org/@stablelib/random/-/random-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/[email protected]":
"integrity" "sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ=="
"resolved" "https://registry.npmjs.org/@stablelib/sha256/-/sha256-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/hash" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/sha512@^1.0.1":
"integrity" "sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw=="
"resolved" "https://registry.npmjs.org/@stablelib/sha512/-/sha512-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@stablelib/binary" "^1.0.1"
"@stablelib/hash" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
"@stablelib/wipe@^1.0.1":
"integrity" "sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg=="
"resolved" "https://registry.npmjs.org/@stablelib/wipe/-/wipe-1.0.1.tgz"
"version" "1.0.1"
"@stablelib/x25519@^1.0.3":
"integrity" "sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw=="
"resolved" "https://registry.npmjs.org/@stablelib/x25519/-/x25519-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"@stablelib/keyagreement" "^1.0.1"
"@stablelib/random" "^1.0.2"
"@stablelib/wipe" "^1.0.1"
"@tanstack/[email protected]":
"integrity" "sha512-YVB+mVWENQwPyv+40qO7flMgKZ0uI41Ph7qXC2Zf1ft5AIGfnXnMZyifB2ghhZ27u+5wm5mlzO4Y6lwwadzxCA=="
"resolved" "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.32.6.tgz"
"version" "4.32.6"
"@tanstack/[email protected]":
"integrity" "sha512-MJJ7CldvT5HOel50h/3wOZZwVlIcroFD5Vxn8vPsfo2C0qQ208ilmN/81JWutm/lWy4n2BjnCrrWv6HvVI7S0w=="
"resolved" "https://registry.npmjs.org/@tanstack/query-persist-client-core/-/query-persist-client-core-4.32.6.tgz"
"version" "4.32.6"
dependencies:
"@tanstack/query-core" "4.32.6"
"@tanstack/query-sync-storage-persister@^4.27.1":
"integrity" "sha512-hTwNo5O5EvydbfdVvwnwY0nIrNg1BxKEV4WAA8A+0NP9yc/9xoWy8RxbIkcz1p4JN2JhagaTKek8Fa5h5KitsA=="
"resolved" "https://registry.npmjs.org/@tanstack/query-sync-storage-persister/-/query-sync-storage-persister-4.32.6.tgz"
"version" "4.32.6"
dependencies:
"@tanstack/query-persist-client-core" "4.32.6"
"@tanstack/react-query-persist-client@^4.28.0":
"integrity" "sha512-EmNnYpvFYpxS4j5WFeNmfVVBxqq4RDnEFDBZwNKRfb4pzukcx/hcWtwqFk7Qj0EI4Dk8QGl239MEYwJbAc83tQ=="
"resolved" "https://registry.npmjs.org/@tanstack/react-query-persist-client/-/react-query-persist-client-4.32.6.tgz"
"version" "4.32.6"
dependencies:
"@tanstack/query-persist-client-core" "4.32.6"
"@tanstack/react-query@^4.28.0":
"integrity" "sha512-AITu/IKJJJXsHHeXNBy5bclu12t08usMCY0vFC2dh9SP/w6JAk5U9GwfjOIPj3p+ATADZvxQPe8UiCtMLNeQbg=="
"resolved" "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.32.6.tgz"
"version" "4.32.6"
dependencies:
"@tanstack/query-core" "4.32.6"
"use-sync-external-store" "^1.2.0"
"@types/connect@^3.4.33":
"integrity" "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="
"resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz"
"version" "3.4.35"
dependencies:
"@types/node" "*"
"@types/debug@^4.1.7":
"integrity" "sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ=="
"resolved" "https://registry.npmjs.org/@types/debug/-/debug-4.1.8.tgz"
"version" "4.1.8"
dependencies:
"@types/ms" "*"
"@types/ms@*":
"integrity" "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
"resolved" "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"
"version" "0.7.31"
"@types/node@*", "@types/node@^12.12.54":
"integrity" "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz"
"version" "12.20.55"
"@types/prop-types@*":
"integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz"
"version" "15.7.5"
"@types/react-dom@^18.2.7":
"integrity" "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz"
"version" "18.2.7"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^18.2.15":
"integrity" "sha512-e2S8wmY1ePfM517PqCG80CcE48Xs5k0pwJzuDZsfE8IZRRBfOMCF+XqnFxu6mWtyivum1MQm4aco+WIt6Coimw=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-18.2.19.tgz"
"version" "18.2.19"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"
"@types/scheduler@*":
"integrity" "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
"resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz"
"version" "0.16.3"
"@types/trusted-types@^2.0.2":
"integrity" "sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g=="
"resolved" "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.3.tgz"
"version" "2.0.3"
"@types/ws@^7.4.4":
"integrity" "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-7.4.7.tgz"
"version" "7.4.7"
dependencies:
"@types/node" "*"
"@types/ws@^8.5.4":
"integrity" "sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-8.5.5.tgz"
"version" "8.5.5"
dependencies:
"@types/node" "*"
"@vitejs/plugin-react@^4.0.3":
"integrity" "sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g=="
"resolved" "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.0.4.tgz"
"version" "4.0.4"
dependencies:
"@babel/core" "^7.22.9"
"@babel/plugin-transform-react-jsx-self" "^7.22.5"
"@babel/plugin-transform-react-jsx-source" "^7.22.5"
"react-refresh" "^0.14.0"
"@wagmi/[email protected]":
"integrity" "sha512-5FRlVxse5P4ZaHG3GTvxwVANSmYJas1eQrTBHhjxVtqXoorm0aLmCHbhmN8Xo1yu09PaWKlleEvfE98yH4AgIw=="
"resolved" "https://registry.npmjs.org/@wagmi/chains/-/chains-1.6.0.tgz"
"version" "1.6.0"
"@wagmi/[email protected]":
"integrity" "sha512-TKVeHv0GqP5sV1yQ8BDGYToAFezPnCexbbBpeH14x7ywi5a1dDStPffpt9x+ytE6LJWkZ6pAMs/HNWXBQ5Nqmw=="
"resolved" "https://registry.npmjs.org/@wagmi/chains/-/chains-1.7.0.tgz"
"version" "1.7.0"
"@wagmi/[email protected]":
"integrity" "sha512-1KOL0HTJl5kzSC/YdKwFwiokr6poUQn1V/tcT0TpG3iH2x0lSM7FTkvCjVVY/6lKzTXrLlo9y2aE7AsOPnkvqg=="
"resolved" "https://registry.npmjs.org/@wagmi/connectors/-/connectors-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"@coinbase/wallet-sdk" "^3.6.6"
"@ledgerhq/connect-kit-loader" "^1.1.0"
"@safe-global/safe-apps-provider" "^0.17.1"
"@safe-global/safe-apps-sdk" "^8.0.0"
"@walletconnect/ethereum-provider" "2.9.2"
"@walletconnect/legacy-provider" "^2.0.0"
"@walletconnect/modal" "2.6.1"
"@walletconnect/utils" "2.9.2"
"abitype" "0.8.7"
"eventemitter3" "^4.0.7"
"@wagmi/[email protected]":
"integrity" "sha512-SrnABCrsDvhiMCLLLyzyHnZbEumsFT/XWlJJQZeyEDcixL95R7XQwOaaoRI4MpNilCtMtu3jzN57tA5Z2iA+kw=="
"resolved" "https://registry.npmjs.org/@wagmi/core/-/core-1.3.9.tgz"
"version" "1.3.9"
dependencies:
"@wagmi/chains" "1.7.0"
"@wagmi/connectors" "2.7.0"
"abitype" "0.8.7"
"eventemitter3" "^4.0.7"
"zustand" "^4.3.1"
"@walletconnect/[email protected]":
"integrity" "sha512-VARMPAx8sIgodeyngDHbealP3B621PQqjqKsByFUTOep8ZI1/R/20zU+cmq6j9RCrL+kLKZcrZqeVzs8Z7OlqQ=="
"resolved" "https://registry.npmjs.org/@walletconnect/core/-/core-2.9.2.tgz"
"version" "2.9.2"
dependencies:
"@walletconnect/heartbeat" "1.2.1"
"@walletconnect/jsonrpc-provider" "1.0.13"
"@walletconnect/jsonrpc-types" "1.0.3"
"@walletconnect/jsonrpc-utils" "1.0.8"
"@walletconnect/jsonrpc-ws-connection" "1.0.13"
"@walletconnect/keyvaluestorage" "^1.0.2"
"@walletconnect/logger" "^2.0.1"
"@walletconnect/relay-api" "^1.0.9"
"@walletconnect/relay-auth" "^1.0.4"
"@walletconnect/safe-json" "^1.0.2"
"@walletconnect/time" "^1.0.2"
"@walletconnect/types" "2.9.2"
"@walletconnect/utils" "2.9.2"
"events" "^3.3.0"
"lodash.isequal" "4.5.0"
"uint8arrays" "^3.1.0"
"@walletconnect/crypto@^1.0.3":
"integrity" "sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g=="
"resolved" "https://registry.npmjs.org/@walletconnect/crypto/-/crypto-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"@walletconnect/encoding" "^1.0.2"
"@walletconnect/environment" "^1.0.1"
"@walletconnect/randombytes" "^1.0.3"
"aes-js" "^3.1.2"
"hash.js" "^1.1.7"
"tslib" "1.14.1"
"@walletconnect/encoding@^1.0.2":
"integrity" "sha512-CrwSBrjqJ7rpGQcTL3kU+Ief+Bcuu9PH6JLOb+wM6NITX1GTxR/MfNwnQfhLKK6xpRAyj2/nM04OOH6wS8Imag=="
"resolved" "https://registry.npmjs.org/@walletconnect/encoding/-/encoding-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"is-typedarray" "1.0.0"
"tslib" "1.14.1"
"typedarray-to-buffer" "3.1.5"
"@walletconnect/environment@^1.0.1":
"integrity" "sha512-T426LLZtHj8e8rYnKfzsw1aG6+M0BT1ZxayMdv/p8yM0MU+eJDISqNY3/bccxRr4LrF9csq02Rhqt08Ibl0VRg=="
"resolved" "https://registry.npmjs.org/@walletconnect/environment/-/environment-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"tslib" "1.14.1"
"@walletconnect/[email protected]":
"integrity" "sha512-eO1dkhZffV1g7vpG19XUJTw09M/bwGUwwhy1mJ3AOPbOSbMPvwiCuRz2Kbtm1g9B0Jv15Dl+TvJ9vTgYF8zoZg=="
"resolved" "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.9.2.tgz"
"version" "2.9.2"
dependencies:
"@walletconnect/jsonrpc-http-connection" "^1.0.7"
"@walletconnect/jsonrpc-provider" "^1.0.13"
"@walletconnect/jsonrpc-types" "^1.0.3"
"@walletconnect/jsonrpc-utils" "^1.0.8"
"@walletconnect/sign-client" "2.9.2"
"@walletconnect/types" "2.9.2"
"@walletconnect/universal-provider" "2.9.2"
"@walletconnect/utils" "2.9.2"
"events" "^3.3.0"
"@walletconnect/events@^1.0.1":
"integrity" "sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ=="
"resolved" "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"keyvaluestorage-interface" "^1.0.0"
"tslib" "1.14.1"
"@walletconnect/[email protected]":
"integrity" "sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q=="
"resolved" "https://registry.npmjs.org/@walletconnect/heartbeat/-/heartbeat-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"@walletconnect/events" "^1.0.1"
"@walletconnect/time" "^1.0.2"
"tslib" "1.14.1"
"@walletconnect/jsonrpc-http-connection@^1.0.4", "@walletconnect/jsonrpc-http-connection@^1.0.7":
"integrity" "sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ=="
"resolved" "https://registry.npmjs.org/@walletconnect/jsonrpc-http-connection/-/jsonrpc-http-connection-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"@walletconnect/jsonrpc-utils" "^1.0.6"
"@walletconnect/safe-json" "^1.0.1"
"cross-fetch" "^3.1.4"
"tslib" "1.14.1"
"@walletconnect/jsonrpc-provider@^1.0.13", "@walletconnect/jsonrpc-provider@^1.0.6", "@walletconnect/[email protected]":
"integrity" "sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g=="
"resolved" "https://registry.npmjs.org/@walletconnect/jsonrpc-provider/-/jsonrpc-provider-1.0.13.tgz"
"version" "1.0.13"
dependencies:
"@walletconnect/jsonrpc-utils" "^1.0.8"
"@walletconnect/safe-json" "^1.0.2"
"tslib" "1.14.1"
"@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3", "@walletconnect/[email protected]":
"integrity" "sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw=="
"resolved" "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"keyvaluestorage-interface" "^1.0.0"
"tslib" "1.14.1"
"@walletconnect/jsonrpc-utils@^1.0.4", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.7", "@walletconnect/jsonrpc-utils@^1.0.8", "@walletconnect/[email protected]":