@funkit/connect 9.10.0 → 9.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/__generated__/default_feature_gates.d.ts +1 -0
  3. package/dist/clients/polymarket.js +74 -27
  4. package/dist/clients/rolly.d.ts +42 -0
  5. package/dist/clients/rolly.js +91 -0
  6. package/dist/components/FunSelectBrokerage/FunSelectBrokerage.d.ts +5 -4
  7. package/dist/consts/bluvo.d.ts +27 -0
  8. package/dist/domains/swapped.d.ts +1 -1
  9. package/dist/hooks/queries/useSwappedExchanges.d.ts +14 -0
  10. package/dist/hooks/useExchangeOptions.d.ts +10 -0
  11. package/dist/hooks/useTokenTransfer.d.ts +2 -1
  12. package/dist/index.js +2662 -2343
  13. package/dist/modals/CheckoutModal/Brokerage/SelectBrokerage.d.ts +1 -1
  14. package/dist/modals/CheckoutModal/InputAmount/useMeld.d.ts +1 -1
  15. package/dist/utils/openExternalFlowPopup.d.ts +21 -0
  16. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  17. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  18. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  21. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/index.js +43 -43
  26. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  35. package/package.json +5 -5
  36. package/dist/wallets/walletConnectors/{chunk-VMMROPXK.js → chunk-34HACM5U.js} +3 -3
  37. package/dist/wallets/walletConnectors/{chunk-3ZJN3PXP.js → chunk-5TN5Z2WY.js} +3 -3
  38. package/dist/wallets/walletConnectors/{chunk-OD6B2ISG.js → chunk-6DRCY52E.js} +3 -3
  39. package/dist/wallets/walletConnectors/{chunk-IRHK6SOW.js → chunk-7V33VJAL.js} +3 -3
  40. package/dist/wallets/walletConnectors/{chunk-ZJJWGKB6.js → chunk-APHCF4DT.js} +3 -3
  41. package/dist/wallets/walletConnectors/{chunk-7IEUTLHY.js → chunk-DEFRRPXB.js} +3 -3
  42. package/dist/wallets/walletConnectors/{chunk-OSOB6QYX.js → chunk-FG2LDVXL.js} +3 -3
  43. package/dist/wallets/walletConnectors/{chunk-ZL6XCMV5.js → chunk-HRDPUW3V.js} +3 -3
  44. package/dist/wallets/walletConnectors/{chunk-UYW6MV74.js → chunk-HXWUH73P.js} +3 -3
  45. package/dist/wallets/walletConnectors/{chunk-UFYNHHDU.js → chunk-KWX2SYU2.js} +3 -3
  46. package/dist/wallets/walletConnectors/{chunk-AZYMJ4C6.js → chunk-LCIPVVH5.js} +3 -3
  47. package/dist/wallets/walletConnectors/{chunk-FWM4KTOV.js → chunk-T4ROGPMF.js} +3 -3
  48. package/dist/wallets/walletConnectors/{chunk-J3PJOMO7.js → chunk-UDTBQV4Q.js} +3 -3
  49. package/dist/wallets/walletConnectors/{chunk-55VS2NKG.js → chunk-V6UOWTEZ.js} +3 -3
  50. package/dist/wallets/walletConnectors/{chunk-LEAZMT5Y.js → chunk-VJZWNQOF.js} +3 -3
  51. package/dist/wallets/walletConnectors/{chunk-RZQ4B4Z7.js → chunk-XVBSJCW5.js} +3 -3
  52. package/dist/wallets/walletConnectors/{chunk-IMNI4AGV.js → chunk-YIEASHLS.js} +3 -3
  53. package/dist/wallets/walletConnectors/{chunk-YGMU5VWD.js → chunk-ZPSPK6LH.js} +3 -3
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { BluvoExchangeType } from '../../../consts/bluvo';
2
+ import { type BluvoExchangeType } from '../../../consts/bluvo';
3
3
  import { type PaymentMethodBrokerageInfo } from '../../../domains/paymentMethods';
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
5
5
  export type SelectBrokerageState = CheckoutModalCommonState;
@@ -35,4 +35,4 @@ export declare function useMeld(meldEnabled: boolean, manuallySelectedQuote: Mel
35
35
  };
36
36
  export declare function openMeldPopup(linkGetter: () => Promise<{
37
37
  widgetUrl: string;
38
- }>): Promise<void>;
38
+ }>): Promise<boolean>;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Opens an external flow (e.g. Meld, Swapped) in a centered popup.
3
+ *
4
+ * iOS and Safari block window.open() calls that don't happen synchronously
5
+ * inside a user-gesture handler. Because the URL often isn't known until after
6
+ * an async fetch, we open about:blank immediately (within the gesture), show a
7
+ * spinner, and then set popup.location.href once the URL resolves. This keeps
8
+ * us inside the trusted-event window while still supporting async URL fetching.
9
+ *
10
+ * Returns true if the popup was opened, false if it was blocked.
11
+ */
12
+ export declare function openExternalFlowPopup(linkGetter: () => Promise<{
13
+ widgetUrl: string;
14
+ }>, options: {
15
+ dimensions: {
16
+ width: number;
17
+ height: number;
18
+ };
19
+ loaderTheme: 'light' | 'dark';
20
+ loaderTitle: string;
21
+ }): Promise<boolean>;
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-OD6B2ISG.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-6DRCY52E.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bifrostWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bitgetWallet
4
- } from "../chunk-IMNI4AGV.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-YIEASHLS.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bitgetWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bybitWallet
4
- } from "../chunk-7IEUTLHY.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-DEFRRPXB.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  bybitWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-3ZJN3PXP.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-5TN5Z2WY.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  clvWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coin98Wallet
4
- } from "../chunk-RZQ4B4Z7.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-XVBSJCW5.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  coin98Wallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-55VS2NKG.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-V6UOWTEZ.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  coreWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-YGMU5VWD.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-ZPSPK6LH.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  foxWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-J3PJOMO7.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-UDTBQV4Q.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  frontierWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-LEAZMT5Y.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-VJZWNQOF.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  gateWallet
@@ -4,43 +4,43 @@ import {
4
4
  } from "./chunk-A5EZBNME.js";
5
5
  import {
6
6
  zerionWallet
7
- } from "./chunk-UFYNHHDU.js";
7
+ } from "./chunk-KWX2SYU2.js";
8
+ import {
9
+ tahoWallet
10
+ } from "./chunk-KS5MJNGD.js";
8
11
  import {
9
12
  talismanWallet
10
13
  } from "./chunk-T3VMQBBI.js";
11
14
  import {
12
15
  tokenPocketWallet
13
- } from "./chunk-UYW6MV74.js";
16
+ } from "./chunk-HXWUH73P.js";
14
17
  import {
15
18
  tokenaryWallet
16
19
  } from "./chunk-R7X5RIO7.js";
17
20
  import {
18
- tahoWallet
19
- } from "./chunk-KS5MJNGD.js";
20
- import {
21
- walletConnectWallet
22
- } from "./chunk-O7ZCUI2Y.js";
21
+ trustWallet
22
+ } from "./chunk-T4ROGPMF.js";
23
23
  import {
24
24
  uniswapWallet
25
25
  } from "./chunk-UKSIXGWC.js";
26
+ import {
27
+ walletConnectWallet
28
+ } from "./chunk-O7ZCUI2Y.js";
26
29
  import {
27
30
  xdefiWallet
28
31
  } from "./chunk-KSNA53EX.js";
29
32
  import {
30
- trustWallet
31
- } from "./chunk-FWM4KTOV.js";
32
- import {
33
- phantomWallet
34
- } from "./chunk-57GN4W23.js";
33
+ rabbyWallet
34
+ } from "./chunk-7PVUEV4M.js";
35
35
  import {
36
36
  rainbowWallet
37
- } from "./chunk-AZYMJ4C6.js";
38
- import {
39
- roninWallet
40
- } from "./chunk-OSOB6QYX.js";
37
+ } from "./chunk-LCIPVVH5.js";
41
38
  import {
42
39
  ramperWallet
43
40
  } from "./chunk-P4E2ZFQB.js";
41
+ import {
42
+ roninWallet
43
+ } from "./chunk-FG2LDVXL.js";
44
44
  import {
45
45
  safeWallet
46
46
  } from "./chunk-BHAPTB57.js";
@@ -49,25 +49,25 @@ import {
49
49
  } from "./chunk-AM5MSNVQ.js";
50
50
  import {
51
51
  safepalWallet
52
- } from "./chunk-VMMROPXK.js";
52
+ } from "./chunk-34HACM5U.js";
53
53
  import {
54
54
  subWallet
55
- } from "./chunk-ZJJWGKB6.js";
55
+ } from "./chunk-APHCF4DT.js";
56
+ import {
57
+ metaMaskWallet
58
+ } from "./chunk-7V33VJAL.js";
56
59
  import {
57
60
  mewWallet
58
61
  } from "./chunk-DP5ICBEB.js";
59
- import {
60
- metaMaskWallet
61
- } from "./chunk-IRHK6SOW.js";
62
62
  import {
63
63
  oktoWallet
64
64
  } from "./chunk-BBPTPMH7.js";
65
+ import {
66
+ okxWallet
67
+ } from "./chunk-HRDPUW3V.js";
65
68
  import {
66
69
  omniWallet
67
70
  } from "./chunk-G3RQSCYR.js";
68
- import {
69
- okxWallet
70
- } from "./chunk-ZL6XCMV5.js";
71
71
  import {
72
72
  oneInchWallet
73
73
  } from "./chunk-EUMOVTRQ.js";
@@ -75,23 +75,23 @@ import {
75
75
  oneKeyWallet
76
76
  } from "./chunk-E3NZE4UP.js";
77
77
  import {
78
- rabbyWallet
79
- } from "./chunk-7PVUEV4M.js";
78
+ phantomWallet
79
+ } from "./chunk-57GN4W23.js";
80
80
  import {
81
81
  foxWallet
82
- } from "./chunk-YGMU5VWD.js";
82
+ } from "./chunk-ZPSPK6LH.js";
83
83
  import {
84
84
  frameWallet
85
85
  } from "./chunk-MTJIPVYB.js";
86
86
  import {
87
87
  frontierWallet
88
- } from "./chunk-J3PJOMO7.js";
88
+ } from "./chunk-UDTBQV4Q.js";
89
+ import {
90
+ gateWallet
91
+ } from "./chunk-VJZWNQOF.js";
89
92
  import {
90
93
  imTokenWallet
91
94
  } from "./chunk-BWLMNATA.js";
92
- import {
93
- gateWallet
94
- } from "./chunk-LEAZMT5Y.js";
95
95
  import {
96
96
  injectedWallet
97
97
  } from "./chunk-HPUEYLLS.js";
@@ -102,20 +102,20 @@ import {
102
102
  ledgerWallet
103
103
  } from "./chunk-V4EXM3KB.js";
104
104
  import {
105
- bitskiWallet
106
- } from "./chunk-Y36HPFB3.js";
105
+ braveWallet
106
+ } from "./chunk-XVH4JIXB.js";
107
107
  import {
108
108
  clvWallet
109
- } from "./chunk-3ZJN3PXP.js";
109
+ } from "./chunk-5TN5Z2WY.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-RZQ4B4Z7.js";
112
+ } from "./chunk-XVBSJCW5.js";
113
113
  import {
114
114
  coinbaseWallet
115
115
  } from "./chunk-OUM6H3WU.js";
116
116
  import {
117
117
  coreWallet
118
- } from "./chunk-55VS2NKG.js";
118
+ } from "./chunk-V6UOWTEZ.js";
119
119
  import {
120
120
  dawnWallet
121
121
  } from "./chunk-PARFRRNI.js";
@@ -130,24 +130,24 @@ import {
130
130
  } from "./chunk-XTD6OMZP.js";
131
131
  import {
132
132
  bifrostWallet
133
- } from "./chunk-OD6B2ISG.js";
133
+ } from "./chunk-6DRCY52E.js";
134
134
  import {
135
135
  bitgetWallet
136
- } from "./chunk-IMNI4AGV.js";
136
+ } from "./chunk-YIEASHLS.js";
137
+ import {
138
+ bitskiWallet
139
+ } from "./chunk-Y36HPFB3.js";
137
140
  import {
138
141
  bitverseWallet
139
142
  } from "./chunk-RZH4FSX7.js";
140
143
  import {
141
144
  bloomWallet
142
145
  } from "./chunk-S6R4B763.js";
143
- import {
144
- braveWallet
145
- } from "./chunk-XVH4JIXB.js";
146
146
  import {
147
147
  bybitWallet
148
- } from "./chunk-7IEUTLHY.js";
149
- import "./chunk-FMVNQKZL.js";
148
+ } from "./chunk-DEFRRPXB.js";
150
149
  import "./chunk-YYYRPQHB.js";
150
+ import "./chunk-FMVNQKZL.js";
151
151
  import "./chunk-3K2MFXCO.js";
152
152
  export {
153
153
  argentWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-IRHK6SOW.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-7V33VJAL.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  metaMaskWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-ZL6XCMV5.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-HRDPUW3V.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  okxWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-AZYMJ4C6.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-LCIPVVH5.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  rainbowWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-OSOB6QYX.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-FG2LDVXL.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  roninWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  safepalWallet
4
- } from "../chunk-VMMROPXK.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-34HACM5U.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  safepalWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  subWallet
4
- } from "../chunk-ZJJWGKB6.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-APHCF4DT.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  subWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-UYW6MV74.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-HXWUH73P.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  tokenPocketWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-FWM4KTOV.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-T4ROGPMF.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  trustWallet
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-UFYNHHDU.js";
5
- import "../chunk-FMVNQKZL.js";
4
+ } from "../chunk-KWX2SYU2.js";
6
5
  import "../chunk-YYYRPQHB.js";
6
+ import "../chunk-FMVNQKZL.js";
7
7
  import "../chunk-3K2MFXCO.js";
8
8
  export {
9
9
  zerionWallet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "9.10.0",
3
+ "version": "9.11.0",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -42,7 +42,7 @@
42
42
  "react": ">=19",
43
43
  "react-dom": ">=19",
44
44
  "viem": ">=2.22.14",
45
- "wagmi": ">=2.0.0 <=3.5.0"
45
+ "wagmi": ">=2.0.0 <=3.6.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@aws-sdk/client-cloudfront": "3.1033.0",
@@ -105,10 +105,10 @@
105
105
  "ua-parser-js": "^1.0.37",
106
106
  "use-debounce": "^10.0.5",
107
107
  "uuid": "^9.0.1",
108
- "@funkit/api-base": "4.2.0",
108
+ "@funkit/api-base": "4.2.1",
109
109
  "@funkit/chains": "1.1.2",
110
- "@funkit/fun-relay": "2.7.0",
111
- "@funkit/utils": "3.0.0"
110
+ "@funkit/utils": "3.0.0",
111
+ "@funkit/fun-relay": "2.7.0"
112
112
  },
113
113
  "repository": {
114
114
  "type": "git",
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/safepalWallet/safepalWallet.ts
11
11
  var safepalWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/clvWallet/clvWallet.ts
11
11
  var clvWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/bifrostWallet/bifrostWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.ts
11
11
  import { isAndroid, isIOS } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/subWallet/subWallet.ts
11
11
  var subWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/bybitWallet/bybitWallet.ts
11
11
  var bybitWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/roninWallet/roninWallet.ts
11
11
  var roninWallet = ({
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/okxWallet/okxWallet.ts
11
11
  import { isAndroid } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.ts
11
11
  import { isMobile } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/zerionWallet/zerionWallet.ts
11
11
  import { isIOS } from "@funkit/utils";
@@ -1,11 +1,11 @@
1
1
  "use client";
2
- import {
3
- getWalletConnectConnector
4
- } from "./chunk-FMVNQKZL.js";
5
2
  import {
6
3
  getInjectedConnector,
7
4
  hasInjectedProvider
8
5
  } from "./chunk-YYYRPQHB.js";
6
+ import {
7
+ getWalletConnectConnector
8
+ } from "./chunk-FMVNQKZL.js";
9
9
 
10
10
  // src/wallets/walletConnectors/rainbowWallet/rainbowWallet.ts
11
11
  import { isAndroid, isIOS } from "@funkit/utils";