-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
13874 lines (11307 loc) · 486 KB
/
pnpm-lock.yaml
File metadata and controls
13874 lines (11307 loc) · 486 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:packages/connect
'@arethetypeswrong/cli':
specifier: ^0.17.4
version: 0.17.4
'@changesets/changelog-github':
specifier: ^0.5.1
version: 0.5.1
'@changesets/cli':
specifier: ^2.29.2
version: 2.29.7(@types/node@20.19.25)
'@eslint/js':
specifier: ^9.25.1
version: 9.39.1
'@types/node':
specifier: ^20.17.32
version: 20.19.25
'@types/react':
specifier: ^19.1.2
version: 19.2.6
'@types/react-dom':
specifier: ^19.1.3
version: 19.2.3(@types/react@19.2.6)
eslint:
specifier: ^9.25.1
version: 9.39.1(jiti@2.6.1)
eslint-plugin-import:
specifier: ^2.31.0
version: 2.32.0(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-hooks:
specifier: ^5.2.0
version: 5.2.0(eslint@9.39.1(jiti@2.6.1))
husky:
specifier: ^9.1.7
version: 9.1.7
prettier:
specifier: ^3.5.3
version: 3.6.2
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
rimraf:
specifier: ^5.0.10
version: 5.0.10
turbo:
specifier: 2.0.1
version: 2.0.1
typescript:
specifier: ^5.8.3
version: 5.8.3
typescript-eslint:
specifier: ^8.31.1
version: 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3)
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: 3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
examples/aave:
dependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@contractjs/aave-v3':
specifier: ^0.0.8
version: 0.0.8(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
react:
specifier: 19.1.0
version: 19.1.0
react-dom:
specifier: 19.1.0
version: 19.1.0(react@19.1.0)
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@eslint/js':
specifier: ^9.33.0
version: 9.39.1
'@types/react':
specifier: ^19.1.2
version: 19.2.6
'@types/react-dom':
specifier: ^19.1.3
version: 19.2.3(@types/react@19.2.6)
'@vitejs/plugin-react':
specifier: ^5.0.0
version: 5.1.1(vite@7.2.2(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2))
eslint:
specifier: ^9.33.0
version: 9.39.1(jiti@2.6.1)
eslint-plugin-react-hooks:
specifier: ^5.2.0
version: 5.2.0(eslint@9.39.1(jiti@2.6.1))
eslint-plugin-react-refresh:
specifier: ^0.4.20
version: 0.4.24(eslint@9.39.1(jiti@2.6.1))
globals:
specifier: ^16.3.0
version: 16.5.0
typescript:
specifier: ~5.8.3
version: 5.8.3
typescript-eslint:
specifier: ^8.39.1
version: 8.47.0(eslint@9.39.1(jiti@2.6.1))(typescript@5.8.3)
vite:
specifier: ^7.1.2
version: 7.2.2(@types/node@20.19.25)(jiti@2.6.1)(lightningcss@1.30.2)
examples/components:
dependencies:
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@radix-ui/react-popover':
specifier: ^1.1.11
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react:
specifier: ^19.1.0
version: 19.1.0
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
examples/next:
dependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../../packages/checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@0xsequence/dapp-client':
specifier: 3.0.1
version: 3.0.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
example-shared-components:
specifier: workspace:*
version: link:../components
next:
specifier: 14.2.3
version: 14.2.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
ox:
specifier: ^0.11.3
version: 0.11.3(typescript@5.8.3)(zod@3.22.4)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
tailwindcss:
specifier: ^4.1.11
version: 4.1.17
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@tailwindcss/postcss':
specifier: ^4.1.4
version: 4.1.17
'@types/node':
specifier: ^20.17.32
version: 20.19.25
'@types/react':
specifier: ^19.1.2
version: 19.2.6
'@types/react-dom':
specifier: ^19.1.3
version: 19.2.3(@types/react@19.2.6)
eslint:
specifier: ^8.57.1
version: 8.57.1
eslint-config-next:
specifier: 14.2.3
version: 14.2.3(eslint@8.57.1)(typescript@5.8.3)
postcss:
specifier: ^8.5.3
version: 8.5.6
typescript:
specifier: ^5.8.3
version: 5.8.3
examples/react:
dependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../../packages/checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@0xsequence/dapp-client':
specifier: 3.0.1
version: 3.0.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
example-shared-components:
specifier: workspace:*
version: link:../components
ox:
specifier: ^0.11.3
version: 0.11.3(typescript@5.8.3)(zod@3.22.4)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
react-router-dom:
specifier: ^7.5.3
version: 7.9.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tailwindcss:
specifier: ^4.1.11
version: 4.1.17
typescript:
specifier: ^5.8.3
version: 5.8.3
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@tailwindcss/postcss':
specifier: ^4.1.4
version: 4.1.17
'@types/node':
specifier: ^20.17.32
version: 20.19.25
'@types/react':
specifier: ^19.1.2
version: 19.2.6
'@types/react-dom':
specifier: ^19.1.3
version: 19.2.3(@types/react@19.2.6)
'@vitejs/plugin-react':
specifier: ^4.4.1
version: 4.7.0(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
postcss:
specifier: ^8.5.3
version: 8.5.6
vite:
specifier: ^5.4.19
version: 5.4.21(@types/node@20.19.25)(lightningcss@1.30.2)
vite-plugin-node-polyfills:
specifier: ^0.21.0
version: 0.21.0(rollup@4.53.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
vite-plugin-svgr:
specifier: ^4.3.0
version: 4.5.0(rollup@4.53.3)(typescript@5.8.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
vite-tsconfig-paths:
specifier: ^4.3.2
version: 4.3.2(typescript@5.8.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
examples/react-waas:
dependencies:
'@0xsequence/checkout':
specifier: workspace:*
version: link:../../packages/checkout
'@0xsequence/connect':
specifier: workspace:*
version: link:../../packages/connect
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../../packages/hooks
'@0xsequence/wallet-widget':
specifier: workspace:*
version: link:../../packages/wallet-widget
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
example-shared-components:
specifier: workspace:*
version: link:../components
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
react-router-dom:
specifier: ^7.5.3
version: 7.9.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
tailwindcss:
specifier: ^4.1.11
version: 4.1.17
typescript:
specifier: ^5.8.3
version: 5.8.3
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
devDependencies:
'@tailwindcss/postcss':
specifier: ^4.1.4
version: 4.1.17
'@types/node':
specifier: ^20.17.32
version: 20.19.25
'@types/react':
specifier: ^19.1.2
version: 19.2.6
'@types/react-dom':
specifier: ^19.1.3
version: 19.2.3(@types/react@19.2.6)
'@vitejs/plugin-react':
specifier: ^4.4.1
version: 4.7.0(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
postcss:
specifier: ^8.5.3
version: 8.5.6
vite:
specifier: ^5.4.19
version: 5.4.21(@types/node@20.19.25)(lightningcss@1.30.2)
vite-plugin-node-polyfills:
specifier: ^0.21.0
version: 0.21.0(rollup@4.53.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
vite-plugin-svgr:
specifier: ^4.3.0
version: 4.5.0(rollup@4.53.3)(typescript@5.8.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
vite-tsconfig-paths:
specifier: ^4.3.2
version: 4.3.2(typescript@5.8.3)(vite@5.4.21(@types/node@20.19.25)(lightningcss@1.30.2))
packages/checkout:
dependencies:
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@0xsequence/indexer':
specifier: '>= 3.0.1'
version: 3.0.1
'@0xsequence/marketplace':
specifier: ^2.3.38
version: 2.3.38
'@0xsequence/metadata':
specifier: '>= 3.0.1'
version: 3.0.1
date-fns:
specifier: ^4.1.0
version: 4.1.0
fuse.js:
specifier: ^7.1.0
version: 7.1.0
motion:
specifier: ^12.9.2
version: 12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
qrcode.react:
specifier: ^4.2.0
version: 4.2.0(react@19.1.0)
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
packages/connect:
dependencies:
'@0xsequence/api':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/auth':
specifier: ^2.3.43
version: 2.3.43(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/core':
specifier: ^2.3.43
version: 2.3.43(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/dapp-client':
specifier: '>=3.0.1'
version: 3.0.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/ethauth':
specifier: ^1.0.0
version: 1.0.0(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/indexer':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/provider':
specifier: ^2.3.43
version: 2.3.43(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/waas':
specifier: ^2.3.43
version: 2.3.43(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/wallet-primitives':
specifier: '>=3.0.1'
version: 3.0.1(typescript@5.8.3)(zod@3.22.4)
'@coinbase/wallet-sdk':
specifier: ^4.3.6
version: 4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
'@metamask/sdk':
specifier: ~0.33.1
version: 0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@walletconnect/ethereum-provider':
specifier: ^2.21.1
version: 2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
clsx:
specifier: ^2.1.1
version: 2.1.1
fuse.js:
specifier: ^7.1.0
version: 7.1.0
motion:
specifier: ^12.9.2
version: 12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
uuid:
specifier: ^10.0.0
version: 10.0.0
devDependencies:
0xsequence:
specifier: ^2.3.43
version: 2.3.43(ethers@6.15.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@databeat/tracker':
specifier: ^0.9.3
version: 0.9.3
'@react-oauth/google':
specifier: ^0.11.1
version: 0.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@tailwindcss/cli':
specifier: ^4.1.11
version: 4.1.17
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
'@types/uuid':
specifier: ^9.0.8
version: 9.0.8
concurrently:
specifier: ^9.1.2
version: 9.2.1
react:
specifier: ^19.1.0
version: 19.1.0
react-apple-signin-auth:
specifier: ^1.1.0
version: 1.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
tailwindcss:
specifier: ^4.1.11
version: 4.1.17
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
packages/hooks:
dependencies:
'@0xsequence/api':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/indexer':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/metadata':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/wallet-primitives':
specifier: '>=3.0.1'
version: 3.0.1(typescript@5.8.3)(zod@3.22.4)
devDependencies:
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.9.1
'@testing-library/react':
specifier: ^16.3.0
version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@vitejs/plugin-react':
specifier: ^4.4.1
version: 4.7.0(vite@6.4.1(@types/node@22.7.5)(jiti@2.6.1)(lightningcss@1.30.2))
jsdom:
specifier: ^25.0.1
version: 25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
msw:
specifier: ^2.7.5
version: 2.12.2(@types/node@22.7.5)(typescript@5.8.3)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
typescript:
specifier: ^5.8.3
version: 5.8.3
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
vite:
specifier: ^6.3.4
version: 6.4.1(@types/node@22.7.5)(jiti@2.6.1)(lightningcss@1.30.2)
vitest:
specifier: ^2.1.9
version: 2.1.9(@types/node@22.7.5)(jsdom@25.0.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(lightningcss@1.30.2)(msw@2.12.2(@types/node@22.7.5)(typescript@5.8.3))
packages/wallet-widget:
dependencies:
0xtrails:
specifier: ^0.11.0
version: 0.11.0(b0c9b5b15d79f98afdaad0e7c9cbc77e)
'@0xsequence/api':
specifier: '>=3.0.1'
version: 3.0.1
'@0xsequence/design-system':
specifier: 3.2.9
version: 3.2.9(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(motion@12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react-hook-form@7.66.1(react@19.1.0))(react@19.1.0)
'@0xsequence/indexer':
specifier: '>=3.0.1'
version: 3.0.1
'@radix-ui/react-popover':
specifier: ^1.1.11
version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.6))(@types/react@19.2.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
dayjs:
specifier: ^1.11.13
version: 1.11.19
fuse.js:
specifier: ^7.1.0
version: 7.1.0
micro-observables:
specifier: 1.7.2
version: 1.7.2(react@19.1.0)
motion:
specifier: ^12.9.2
version: 12.23.24(@emotion/is-prop-valid@1.4.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
qrcode.react:
specifier: ^4.2.0
version: 4.2.0(react@19.1.0)
devDependencies:
'@0xsequence/connect':
specifier: workspace:*
version: link:../connect
'@0xsequence/hooks':
specifier: workspace:*
version: link:../hooks
'@tanstack/react-query':
specifier: ^5.74.11
version: 5.90.10(react@19.1.0)
react:
specifier: ^19.1.0
version: 19.1.0
react-dom:
specifier: ^19.1.0
version: 19.1.0(react@19.1.0)
viem:
specifier: ^2.45.1
version: 2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4)
wagmi:
specifier: ^3.2.0
version: 3.2.0(@coinbase/wallet-sdk@4.3.7(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@metamask/sdk@0.33.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))(@safe-global/safe-apps-provider@0.18.6(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(@tanstack/query-core@5.90.20)(@tanstack/react-query@5.90.10(react@19.1.0))(@types/react@19.2.6)(@walletconnect/ethereum-provider@2.23.1(@types/react@19.2.6)(bufferutil@4.0.9)(react@19.1.0)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))(ox@0.11.3(typescript@5.8.3)(zod@3.22.4))(react@19.1.0)(typescript@5.8.3)(viem@2.45.1(bufferutil@4.0.9)(typescript@5.8.3)(utf-8-validate@5.0.10)(zod@3.22.4))
packages:
0xsequence@2.3.43:
resolution: {integrity: sha512-lf/IPtqNqRmeWJOUVxUHIAVCt+wvgYsJ6P/8pA7RrWBqdnzTLnvrJlEMspB3P+jzFOfzAndGBKe4KKNVMH+F7A==}
peerDependencies:
ethers: '>=6'
0xtrails@0.11.0:
resolution: {integrity: sha512-aiN3Zv0x+NTBBxiw+p+AprogMEmAYPZJ40TSmKwMphY3cyHzrpRS0aAUroF1q/Rn7cyGtR2+CnpQv9Vzar8Zbg==}
peerDependencies:
'@tanstack/react-query': ^5.90.12
react: ^18.0.0 || ^19.0.0
react-dom: ^18.0.0 || ^19.0.0
viem: ^2.41.0
wagmi: ^2.14.0
'@0xsequence/abi@2.3.38':
resolution: {integrity: sha512-KdR0JkjA9qnkZg5G/gFJT6xg5Ngzargf9blDGjniVqLhK3i/PuVMKV23CVmNi8Yg4QKB1DcwwB4hXKx6rXmJgQ==}
'@0xsequence/abi@2.3.43':
resolution: {integrity: sha512-ybWRT+knMPpOH/XBucw8/BviyqomLAgvbCxFTNB0WAaO3inVCdHEil2keBFXgPKGlEVozQ5ZhE0k6WQxb3bZSw==}
'@0xsequence/account@2.3.43':
resolution: {integrity: sha512-MVAZcUPSnpUuXu9NaZN2VGv8/oIFjhuYbVKx2grBiGA8oAxtkOYiV5If2xmpnRAvl1W/f4cAl4oJi6q0bLUfkA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/api@2.3.43':
resolution: {integrity: sha512-1L6oNcstgG1+P7Jxo4fwY/uqT5C6iAZXKJc6DZKdsJiEn3BUZ+Cyx9j2sMMoqQ8hx18x9wrn8368T/dmJ8Rhqg==}
'@0xsequence/api@3.0.1':
resolution: {integrity: sha512-mIHCMUqQ1to2OGtq5TtMlzu3IQtoJg1EvU1OVhr6UvtjADoi4PiK2FKV3wSherIgvOJ5Da+xvEcSkxeeFvhfCg==}
'@0xsequence/auth@2.3.43':
resolution: {integrity: sha512-qtm7WvQ5+5wckBBqPa7mDbWtgm0wDHvCzIEaieS1de3a+xZETx/TvRguYL62Y0HXKtnhtV+BkUxiuhFteNfpiQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/connect@5.4.4':
resolution: {integrity: sha512-AVus4NHk2qzzz3vO5D6NbpMWjF5OPETmUiatWK42cIcv4kLRtnOQgGpXFKlxLJibVcQ8WtHhdTcmKASxQ56/Ww==}
peerDependencies:
0xsequence: '>= 2.3.23'
'@0xsequence/hooks': 5.4.4
'@databeat/tracker': ^0.9.3
'@react-oauth/google': ^0.11.1
'@tanstack/react-query': '>= 5'
ethers: '>=6.13.0'
react: '>= 17'
react-apple-signin-auth: ^1.1.0
react-dom: '>= 17'
viem: '>= 2.28.0'
wagmi: '>= 2.15.0'
'@0xsequence/core@2.3.38':
resolution: {integrity: sha512-H87zfeIX9YjlsDgxj2xJ2sIPU4bonRN5iHnOerWeVpHAfsUgVT6CwRSEvd2Ek3Yw1sI+s7kG9b4XxmJuh6Dp6Q==}
peerDependencies:
ethers: '>=6'
'@0xsequence/core@2.3.43':
resolution: {integrity: sha512-kPJs8SS35fIYS0wrNJ/2ODW3YyBWKdEXq4mncyG4CvCO7zT6kohsYljC3uUyH4NwWGCYoMt1T8c1CKwnZBpJTQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/dapp-client@3.0.1':
resolution: {integrity: sha512-uyVzmYU2N3ayZRdFvki19OiYVHiYDBAMrt+6EE1VnG6U3oCMrRLCTof0Ez/SV/zTL2W/Y0yLUNpWgSXN1tABhw==}
'@0xsequence/design-system@2.1.11':
resolution: {integrity: sha512-wfuY9v2dNQxw9qAYyflwcKzuiiVqm4qqn2Jkoyw/CqxODcqQ3orUsGxjnbyvCWOwvHbH908c4LOZj/TBI6T0Fw==}
peerDependencies:
motion: '>= 12'
react: '>= 17'
react-dom: '>= 17'
'@0xsequence/design-system@3.2.9':
resolution: {integrity: sha512-1vwL6J59KdQKS0644XPUtBJCY52rE34POigqlXZRtO33MA0x7szEK9DY4bWo8xrOat0G9ZBFHST4Y058n3Q/UQ==}
peerDependencies:
motion: '>= 12'
react: '>= 17'
react-dom: '>= 17'
react-hook-form: '>= 7'
'@0xsequence/ethauth@1.0.0':
resolution: {integrity: sha512-piihXzbS8Sq7P670a+GyTm3igTJL3Ts6pqjJcC0Sv86yqeK6QD0pzJP4APP+/IQa5k+0s2l1SeZwMjR7gSPtCA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/guard@2.3.43':
resolution: {integrity: sha512-gVyCzjId93iTGBJTCarHeu5aVcvQKNa7PslYc33PPfLpXTUgOZRGA4ClifiEP5A0oTg+y73hxawmZiv3JTUhXw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/guard@3.0.1':
resolution: {integrity: sha512-1Owxnut+3BUlYOZIG013YsMaWv5DCaxy4dYBBGtMj0O+AwXxjrK9ZTVDi5LDqk3ygQHI1feWQ9R/xg9VCLtoEQ==}
'@0xsequence/hooks@5.4.8':
resolution: {integrity: sha512-G9qHD3wj1JxPvME4WtRlE6tL8+v9U2R32vMXbPkQogmj1yVFdwmUv9mMT/zzlP6obx6ZrN6TL9dRF/siqdzSSQ==}
peerDependencies:
'@0xsequence/api': '>=2.3.38'
'@0xsequence/indexer': '>=2.3.38'
'@0xsequence/metadata': '>=2.3.38'
'@0xsequence/network': '>=2.3.38'
'@tanstack/react-query': '>= 5'
react: '>= 17'
react-dom: '>= 17'
viem: '>= 2.28.0'
'@0xsequence/indexer@2.3.38':
resolution: {integrity: sha512-26QXgXh9EorSkuWSGObKfenaKr1TvGVh/dxrbR5hhu21qvuYLy9DDPHzYzhutSR1DRvKJdRlUZkWIWGr5RP6bg==}
'@0xsequence/indexer@2.3.43':
resolution: {integrity: sha512-PBPEc+zsvEG8XOwvOOiMm+G1wmg2+20kfTTxOHD0TFMs6zx14gHbmhJjnfVMRTVVFoIrkSpy5g0g8Ia7yy8w6A==}
'@0xsequence/indexer@3.0.0-beta.4':
resolution: {integrity: sha512-ezuUgyYvN+F5DdS6Pn+bH7477cSGk2x71gDiV0XXuoDoh3i9OXfUsP/oaBLnf4WCLoy+3QwWAjfhel4VpDcpyA==}
'@0xsequence/indexer@3.0.1':
resolution: {integrity: sha512-QctxvNb+a/e2Nr80OZJY2v2kBzH/Vk4dYLMskdynSwcFI1r7qrkIPsblZ0mkvWZgjb9tPrOxBm9TGd4zkVqvvg==}
'@0xsequence/marketplace@2.3.38':
resolution: {integrity: sha512-i5u6BWXqnRgoTB4gR7mQT6Ji9n9J2fXQtsX5wRUfGJn8/pLkgULEc8ZxjVcNpvc1e+Ty67CobXq+GmAKdwDFSQ==}
'@0xsequence/metadata@2.3.40':
resolution: {integrity: sha512-IZrnGduT6z7XbdqWTAm0EWRD05HcaPAxejP3f23vmK65p+ZbQNzaHo9HRTesc+Hcmk5ukB3remhO2vq+Fqw5ww==}
'@0xsequence/metadata@2.3.43':
resolution: {integrity: sha512-dwHcmNzNkroQs1bQHdkVZmcQPako6nyX0Bnnle2PIhkvmakht1nV0+Y4SmteYoInyNZlo2YT4LKbgReXBdleRw==}
'@0xsequence/metadata@3.0.1':
resolution: {integrity: sha512-LF7RXDroyRR1JdbpaPB/DVGc+yROwUFxLoXV7djAGBRKNEMNRYvebuAhpu3oU9XkHTNoqbEMML5zTBMtCxIOzg==}
'@0xsequence/migration@2.3.43':
resolution: {integrity: sha512-b/KLW5bCtM9DW6HZr2k8CsPH6mhCAeKA69G9D5pix2lYzfpFfLgxPw6J98x48Rly2cM19WfHWUYUIL9myOyHaQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/network@2.3.38':
resolution: {integrity: sha512-K/WcruatKmWz3mcBPWJOQFeTUrfPNL7/fdPsMxA9o8Oqu048xe9lhsf0qiTTEFqS+tjGhzxYFH4tlPmNTsPHaA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/network@2.3.43':
resolution: {integrity: sha512-HLorxJ/UIKcRcUPyyTxy4yeaioxc2hmm0joqClfY8tvweO/ASKXXa4aXCdSDWaLFbVQlhmrn4i1FR/ykwQM57A==}
peerDependencies:
ethers: '>=6'
'@0xsequence/provider@2.3.43':
resolution: {integrity: sha512-e5JvAjJ7rPrydVsfofloCjSeKIIKlHUr481373hC1TB7UmqfD2fIAbH4rYV80GCy0Ha+2n9B0iy/8xQtKwwj1Q==}
peerDependencies:
ethers: '>=6'
'@0xsequence/relayer@2.3.38':
resolution: {integrity: sha512-5y82sgwZdVU6C9acx8njLDTpVef648xSbnOMKwfnIDjlJbYRdVDf92XYKgIDheOjCXCxYyw8121z+hptJf/P2g==}
peerDependencies:
ethers: '>=6'
'@0xsequence/relayer@2.3.43':
resolution: {integrity: sha512-2Rs1e6LA9nLRGAlQEcaCFscEvRNhp9MkryXyqarwbrojCg0tYk0WmQcicyjHUOqiKAHhjTn+MepuwnFslKMPqQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/relayer@3.0.1':
resolution: {integrity: sha512-cIUFrO5cr2LKPUe2fkU/aeaJ0o6o36VAYrtQf7ZDoAVmIzLTd8ndCibnfEs48961+5tIQdtIudZu6LWWGzSQ+w==}
'@0xsequence/replacer@2.3.43':
resolution: {integrity: sha512-LWD+UNRaz3gWV2MsQjaxui0WdCFrmBHzHIPMrfHTj5LnXBmSC2BUDYPGWTDhzZ9RPtNHoyg4eQRKLDVgEzWYLQ==}
peerDependencies:
ethers: '>=6'
'@0xsequence/sessions@2.3.43':
resolution: {integrity: sha512-7/1i2uqc1L2pdjgxmYUhNzsoyOj9e5sQsEj3kXZSc0OSAbPJk4jEegiNMdO7K8vBV53N1qFQ8ySm053lJFBcRg==}
peerDependencies:
ethers: '>=6'
'@0xsequence/signhub@2.3.43':
resolution: {integrity: sha512-vG4fFupdOoXo9u1Q9eKvvcVSIx3hb2viNnblj5LudYUTxwLS/EvmKcvMYnC2bLkjP5rF/yqi7uY5d8v19FIw3Q==}
peerDependencies:
ethers: '>=6'
'@0xsequence/utils@2.3.38':
resolution: {integrity: sha512-XCe17omFbLjQnDW7HNhNzTqcpeeiXeSCc5ttFjOYex+GO8v9imPt3qbcn4N2v4dlylfkSfpdh4DcnKlcAPAtFw==}
peerDependencies:
ethers: '>=6'
'@0xsequence/utils@2.3.43':
resolution: {integrity: sha512-b5+8kNY1sEUU6yICOEoMZIoM4PNzgxIObKdOlk22d8SGb//VB7k9/gpG+u4LYVrA4t3LHlSuzzt62MEQ3mFMYA==}
peerDependencies:
ethers: '>=6'
'@0xsequence/waas@2.3.43':
resolution: {integrity: sha512-/7XYyG93JlPoQVbTwGX/vUfXB/Hn4RXRA3dDA+gve9UxxKUHHsoklhCfinQmXVOQ55aVKOpGs9Qxf4JUG5Yt2g==}
peerDependencies:
ethers: '>=6'
'@0xsequence/wallet-core@3.0.1':
resolution: {integrity: sha512-Sew7gyv6oCWTKshWh0UJ/wnCmfnu82G2I931yDv/3WxRJ03v049UPu0yejasbr1BE3bYRhMiRWgdTDo7uAMGcQ==}
'@0xsequence/wallet-primitives@3.0.0-beta.4':
resolution: {integrity: sha512-RfRf6GlxU+QvHeAPEHq+Z961ayEm0TmAdaI9R9pmrj5YsR/ZPqb+XsARC3OlB5dnwiOCwjZQpVyA3wqgI8XCRQ==}
'@0xsequence/wallet-primitives@3.0.1':
resolution: {integrity: sha512-Yt3KwJHJcgOLcLv+JvzxIlL/4IQlq5MtuidMhnwsoIxs4+RPIurqDj+OF/qDa/ZXG/WzDffVeiZcSXV86Y6G/w==}
'@0xsequence/wallet@2.3.43':
resolution: {integrity: sha512-zbS7p6SdZRaVU6nEVD72y6TOZlCny3s3JYx/pAn0gUxSKOuioidG+iO/pZ6Z8vmKAEAFyIUXWdcbefk+wi3ocw==}
peerDependencies:
ethers: '>=6'
'@0xtrails/api@0.11.0':
resolution: {integrity: sha512-r9Ozz6vxffRSydn0xjCq6vrZzuo4aEB8FoKIULmejOuxn4Od54JQajv9rn/+DE5slQcoENMDCU+9sap+YM98SA==}
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
'@adraffy/ens-normalize@1.11.1':
resolution: {integrity: sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ==}
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@andrewbranch/untar.js@1.0.3':
resolution: {integrity: sha512-Jh15/qVmrLGhkKJBdXlK1+9tY4lZruYjsgkDFj08ZmDiWVBLJcqkok7Z0/R0In+i1rScBpJlSvrTS2Lm41Pbnw==}
'@arethetypeswrong/cli@0.17.4':
resolution: {integrity: sha512-AeiKxtf67XD/NdOqXgBOE5TZWH3EOCt+0GkbUpekOzngc+Q/cRZ5azjWyMxISxxfp0EItgm5NoSld9p7BAA5xQ==}
engines: {node: '>=18'}
hasBin: true
'@arethetypeswrong/core@0.17.4':
resolution: {integrity: sha512-Izvir8iIoU+X4SKtDAa5kpb+9cpifclzsbA8x/AZY0k0gIfXYQ1fa1B6Epfe6vNA2YfDX8VtrZFgvnXB6aPEoQ==}
engines: {node: '>=18'}
'@asamuzakjp/css-color@3.2.0':
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.28.5':
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.5':
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.5':
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-transform-react-jsx-self@7.27.1':
resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.27.1':
resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.28.4':
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.28.5':
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.5':
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
engines: {node: '>=6.9.0'}
'@braidai/lang@1.1.2':
resolution: {integrity: sha512-qBcknbBufNHlui137Hft8xauQMTZDKdophmLFv05r2eNmdIv/MlPuP4TdUknHG68UdWLgVZwgxVe735HzJNIwA==}
'@changesets/apply-release-plan@7.0.13':
resolution: {integrity: sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==}
'@changesets/assemble-release-plan@6.0.9':
resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==}
'@changesets/changelog-git@0.2.1':
resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==}
'@changesets/changelog-github@0.5.1':
resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==}
'@changesets/cli@2.29.7':
resolution: {integrity: sha512-R7RqWoaksyyKXbKXBTbT4REdy22yH81mcFK6sWtqSanxUCbUi9Uf+6aqxZtDQouIqPdem2W56CdxXgsxdq7FLQ==}
hasBin: true
'@changesets/config@3.1.1':
resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==}
'@changesets/errors@0.2.0':
resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==}
'@changesets/get-dependents-graph@2.1.3':
resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==}
'@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
'@changesets/get-release-plan@4.0.13':
resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==}
'@changesets/get-version-range-type@0.4.0':
resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==}
'@changesets/git@3.0.4':
resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==}
'@changesets/logger@0.1.1':
resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==}
'@changesets/parse@0.4.1':
resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==}
'@changesets/pre@2.0.2':