@funkit/connect 6.12.0 → 6.12.3

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 (24) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/index.js +43 -38
  3. package/dist/providers/FunkitMoonpayProvider.d.ts +5 -1
  4. package/dist/utils/flags/config.d.ts +2 -18
  5. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  6. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  7. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  8. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  9. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  10. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  11. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  12. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  13. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  14. package/dist/wallets/walletConnectors/index.js +60 -60
  15. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  16. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  17. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  18. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  24. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 6.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 6374cf8: feat: add ip fallback
8
+
9
+ ## 6.12.1
10
+
11
+ ### Patch Changes
12
+
13
+ - d289dac: fix: fun info banner duplication
14
+
3
15
  ## 6.12.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.js CHANGED
@@ -2300,10 +2300,10 @@ var flagConfig = {
2300
2300
  values: [
2301
2301
  DEV_API_KEY2,
2302
2302
  POLYMARKET_API_KEY2,
2303
- OSTIUM_API_KEY2,
2304
- HYPERBEAT_API_KEY2,
2305
- HYPERDASH_API_KEY,
2306
- BASED_API_KEY
2303
+ OSTIUM_API_KEY2
2304
+ // HYPERBEAT_API_KEY,
2305
+ // HYPERDASH_API_KEY,
2306
+ // BASED_API_KEY,
2307
2307
  ]
2308
2308
  }
2309
2309
  ],
@@ -2613,28 +2613,6 @@ var flagConfig = {
2613
2613
  ],
2614
2614
  value: true
2615
2615
  },
2616
- {
2617
- if_all: [
2618
- {
2619
- key: "userId",
2620
- type: "pctRollout",
2621
- pct: 50
2622
- },
2623
- {
2624
- key: "apiKey",
2625
- type: "isAnyOf",
2626
- values: [POLYMARKET_API_KEY2]
2627
- }
2628
- ],
2629
- if_any: [
2630
- {
2631
- key: "userId",
2632
- type: "pctRollout",
2633
- pct: 0
2634
- }
2635
- ],
2636
- value: true
2637
- },
2638
2616
  {
2639
2617
  if_any: [
2640
2618
  {
@@ -2646,7 +2624,8 @@ var flagConfig = {
2646
2624
  HYPERBEAT_API_KEY2,
2647
2625
  HYPERDASH_API_KEY,
2648
2626
  BASED_API_KEY,
2649
- OSTIUM_API_KEY2
2627
+ OSTIUM_API_KEY2,
2628
+ POLYMARKET_API_KEY2
2650
2629
  ]
2651
2630
  }
2652
2631
  ],
@@ -2957,6 +2936,26 @@ var isCountryBlocked = (blockedList, userIpInfo) => {
2957
2936
  });
2958
2937
  return isBlocked;
2959
2938
  };
2939
+ async function getIpViaMoonpay(moonpayApiKey) {
2940
+ const url = `https://api.moonpay.com/v3/ip_address?apiKey=${moonpayApiKey}`;
2941
+ const response = await fetch(url);
2942
+ if (!response.ok) {
2943
+ throw Error(response.statusText);
2944
+ }
2945
+ const data = await response.json();
2946
+ logger.info("getUserIpViaMoonpay:done");
2947
+ return data;
2948
+ }
2949
+ async function getIpViaIpApi() {
2950
+ const url = "https://ipapi.co/json";
2951
+ const response = await fetch(url);
2952
+ if (!response.ok) {
2953
+ throw Error(response.statusText);
2954
+ }
2955
+ const data = await response.json();
2956
+ logger.info("getUserIpViaIpApi:done");
2957
+ return data;
2958
+ }
2960
2959
  function useFunkitUserIp() {
2961
2960
  const { moonpayApiKey } = useContext7(FunkitMoonpayContext);
2962
2961
  const { getFlag, isLoading: isLoadingFlags } = useFlags();
@@ -2967,17 +2966,23 @@ function useFunkitUserIp() {
2967
2966
  queryKey: ["getUserIpInfo"],
2968
2967
  queryFn: async () => {
2969
2968
  try {
2970
- const url = `https://api.moonpay.com/v3/ip_address?apiKey=${moonpayApiKey}`;
2971
- const response = await fetch(url);
2972
- if (!response.ok) {
2973
- throw Error(response.statusText);
2974
- }
2975
- const data = await response.json();
2976
- logger.info("getUserIpViaMoonpay:done");
2977
- return data;
2969
+ const moonpayIpData = await getIpViaMoonpay(moonpayApiKey);
2970
+ return {
2971
+ alpha2: moonpayIpData.alpha2,
2972
+ state: moonpayIpData.state
2973
+ };
2978
2974
  } catch (error) {
2979
2975
  logger.error("getUserIpViaMoonpay:error", error);
2980
- throw error;
2976
+ try {
2977
+ const ipApiData = await getIpViaIpApi();
2978
+ return {
2979
+ alpha2: ipApiData.country_code,
2980
+ state: ipApiData.region_code
2981
+ };
2982
+ } catch (ipApiError) {
2983
+ logger.error("getUserIpViaIpApi:error", ipApiError);
2984
+ throw ipApiError;
2985
+ }
2981
2986
  }
2982
2987
  },
2983
2988
  enabled: !!moonpayApiKey,
@@ -23718,7 +23723,7 @@ function TransferToken({
23718
23723
  size: "12"
23719
23724
  }
23720
23725
  )
23721
- ), isLoadingDepositAddress ? /* @__PURE__ */ React163.createElement(FunSkeletonBlock, { height: "66", width: "full" }) : /* @__PURE__ */ React163.createElement(CopyInputDisplayedAddress, { address: depositAddress })), /* @__PURE__ */ React163.createElement(FunInfoBanner, null), blockchain === "bitcoin" && /* @__PURE__ */ React163.createElement(
23726
+ ), isLoadingDepositAddress ? /* @__PURE__ */ React163.createElement(FunSkeletonBlock, { height: "66", width: "full" }) : /* @__PURE__ */ React163.createElement(CopyInputDisplayedAddress, { address: depositAddress })), blockchain === "bitcoin" && /* @__PURE__ */ React163.createElement(
23722
23727
  InfoBanner,
23723
23728
  {
23724
23729
  message: "Bitcoin deposits might take up to 30 minutes to complete.",
@@ -31297,7 +31302,7 @@ function setFunkitConnectVersion({ version }) {
31297
31302
  localStorage.setItem(storageKey5, version);
31298
31303
  }
31299
31304
  function getCurrentSdkVersion() {
31300
- return "6.12.0";
31305
+ return "6.12.3";
31301
31306
  }
31302
31307
  function useFingerprint() {
31303
31308
  const fingerprint = useCallback50(() => {
@@ -6,6 +6,7 @@ export declare function FunkitMoonpayProvider({ children, debug, }: {
6
6
  export interface UserIpInfoFromMoonpay {
7
7
  /** https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 */
8
8
  alpha2: 'AU' | 'CA' | 'US' | string;
9
+ state: string;
9
10
  alpha3: string;
10
11
  country: string;
11
12
  ipAddress: string;
@@ -15,10 +16,13 @@ export interface UserIpInfoFromMoonpay {
15
16
  isSellAllowed: boolean;
16
17
  isBalanceLedgerWithdrawAllowed: boolean;
17
18
  isLowLimitEnabled: boolean;
19
+ }
20
+ export interface FunkitUserIpInfo {
21
+ alpha2: string;
18
22
  state: string;
19
23
  }
20
24
  export declare function useFunkitUserIp(): {
21
25
  isLoadingGeoCheck: boolean;
22
26
  isUserGeoblocked: boolean;
23
- userIpInfo: UserIpInfoFromMoonpay | undefined;
27
+ userIpInfo: FunkitUserIpInfo | undefined;
24
28
  };
@@ -64,7 +64,7 @@ export declare const flagConfig: {
64
64
  readonly if_any: [{
65
65
  readonly key: "apiKey";
66
66
  readonly type: "isAnyOf";
67
- readonly values: ["Z9SZaOwpmE40KX61mUKWm5hrpGh7WHVkaTvQJpQk", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e"];
67
+ readonly values: ["Z9SZaOwpmE40KX61mUKWm5hrpGh7WHVkaTvQJpQk", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN"];
68
68
  }];
69
69
  readonly value: true;
70
70
  }];
@@ -206,27 +206,11 @@ export declare const flagConfig: {
206
206
  readonly values: ["0x6ec0c2f25d323e7779925Cc20c3740101f990d9F", "0xbeFE12aA8cBa36DD79F50eE5E23828adB62f2FD6", "0x2A8Bd916E85d98d8175258De99fc0ddbcC102eF6", "0xda6b07Eb94f699F511a943e9bFC12B64B7fe3486", "0x0D6e43CA32545B3dc2FE6f93AafBD7e640F548d4", "0x236c60C57a8B9ca563Fb0dA5199FDdCB686d91E8", "0x4a1457fa2845bAfE8D3909cA3C5ac6107be312Dd", "0xfCB8B2d294eD7373B3B590dd7C0CBC430d41a9a0", "0x9CB7F86F360459cC96C74a0F81aF2C4cC7a54bd2", "0xbC805309dde14dFC14f91f7D4Cb9972Ecc915D39", "0xbD31535c457298E0b77AC8EA25DfE3A9BE165cBf", "0xA7B7D4caC72EeE278Af02121E4b2b782A89AD6f9"];
207
207
  }];
208
208
  readonly value: true;
209
- }, {
210
- readonly if_all: [{
211
- readonly key: "userId";
212
- readonly type: "pctRollout";
213
- readonly pct: 50;
214
- }, {
215
- readonly key: "apiKey";
216
- readonly type: "isAnyOf";
217
- readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"];
218
- }];
219
- readonly if_any: [{
220
- readonly key: "userId";
221
- readonly type: "pctRollout";
222
- readonly pct: 0;
223
- }];
224
- readonly value: true;
225
209
  }, {
226
210
  readonly if_any: [{
227
211
  readonly key: "apiKey";
228
212
  readonly type: "isAnyOf";
229
- readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN"];
213
+ readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6"];
230
214
  }];
231
215
  readonly value: true;
232
216
  }, {
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-A5N6B5UW.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-UIASLGLV.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bifrostWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bitgetWallet
4
- } from "../chunk-TDAVGY5F.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-5W7VDOCL.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bitgetWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bybitWallet
4
- } from "../chunk-2STUC6QL.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-LNEC5RNX.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  bybitWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  clvWallet
4
- } from "../chunk-M3NZ6R2E.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-2GJQ4XZQ.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  clvWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coin98Wallet
4
- } from "../chunk-OBOVHCEI.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-KIDC67XJ.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  coin98Wallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  coreWallet
4
- } from "../chunk-VR4TBQ6S.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-JCHN6A47.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  coreWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  foxWallet
4
- } from "../chunk-7QONTUXT.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-CNPKISHN.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  foxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  frontierWallet
4
- } from "../chunk-TCAGNB4B.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-VWCLFMWJ.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  frontierWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  gateWallet
4
- } from "../chunk-FKJJQNKX.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-CJGUM55H.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  gateWallet
9
9
  };
@@ -1,153 +1,153 @@
1
1
  "use client";
2
2
  import {
3
- zealWallet
4
- } from "./chunk-RNBEDQHF.js";
5
- import {
6
- walletConnectWallet
7
- } from "./chunk-NP5QGWNL.js";
3
+ xdefiWallet
4
+ } from "./chunk-BOU4WKRZ.js";
8
5
  import {
9
6
  zerionWallet
10
- } from "./chunk-SULRQO27.js";
7
+ } from "./chunk-Q3H3TRBS.js";
8
+ import {
9
+ zealWallet
10
+ } from "./chunk-RNBEDQHF.js";
11
11
  import {
12
12
  tahoWallet
13
13
  } from "./chunk-ZZZRUXZE.js";
14
- import {
15
- safepalWallet
16
- } from "./chunk-NT2HYJKW.js";
17
14
  import {
18
15
  subWallet
19
- } from "./chunk-JWFF4AAL.js";
16
+ } from "./chunk-ZSI5N4VV.js";
20
17
  import {
21
- tokenaryWallet
22
- } from "./chunk-D6AOOO5F.js";
18
+ talismanWallet
19
+ } from "./chunk-DRO6WYMM.js";
23
20
  import {
24
21
  tokenPocketWallet
25
- } from "./chunk-2L43XSW3.js";
26
- import {
27
- xdefiWallet
28
- } from "./chunk-BOU4WKRZ.js";
22
+ } from "./chunk-J3LI3FYZ.js";
29
23
  import {
30
24
  trustWallet
31
- } from "./chunk-VYBAYMP3.js";
25
+ } from "./chunk-RKPCWHXL.js";
26
+ import {
27
+ tokenaryWallet
28
+ } from "./chunk-D6AOOO5F.js";
32
29
  import {
33
30
  uniswapWallet
34
31
  } from "./chunk-LH7BMNFZ.js";
35
32
  import {
36
- rabbyWallet
37
- } from "./chunk-BBOM42DL.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
38
35
  import {
39
36
  phantomWallet
40
37
  } from "./chunk-362NXNTM.js";
38
+ import {
39
+ rabbyWallet
40
+ } from "./chunk-BBOM42DL.js";
41
41
  import {
42
42
  rainbowWallet
43
- } from "./chunk-2KUBG3S6.js";
43
+ } from "./chunk-3CICVJUN.js";
44
44
  import {
45
45
  ramperWallet
46
46
  } from "./chunk-BYXPFMI7.js";
47
47
  import {
48
48
  roninWallet
49
- } from "./chunk-NWIQNBJU.js";
50
- import {
51
- safeheronWallet
52
- } from "./chunk-RZIO5TFF.js";
49
+ } from "./chunk-QLVVUKYB.js";
53
50
  import {
54
51
  safeWallet
55
52
  } from "./chunk-BQQQL6UD.js";
56
53
  import {
57
- talismanWallet
58
- } from "./chunk-DRO6WYMM.js";
54
+ safeheronWallet
55
+ } from "./chunk-RZIO5TFF.js";
59
56
  import {
60
- kresusWallet
61
- } from "./chunk-MJXPRJZT.js";
57
+ safepalWallet
58
+ } from "./chunk-EC6CHBSZ.js";
62
59
  import {
63
60
  ledgerWallet
64
61
  } from "./chunk-BRBKM4PW.js";
62
+ import {
63
+ metaMaskWallet
64
+ } from "./chunk-UYGJO62F.js";
65
65
  import {
66
66
  mewWallet
67
67
  } from "./chunk-OL5ZO7E4.js";
68
- import {
69
- omniWallet
70
- } from "./chunk-7CUY5G6R.js";
71
68
  import {
72
69
  oktoWallet
73
70
  } from "./chunk-ADIXAKUL.js";
74
71
  import {
75
72
  okxWallet
76
- } from "./chunk-TDIEHTMB.js";
73
+ } from "./chunk-AFXHGWBH.js";
77
74
  import {
78
- oneKeyWallet
79
- } from "./chunk-SHBUZ7U7.js";
75
+ omniWallet
76
+ } from "./chunk-7CUY5G6R.js";
80
77
  import {
81
78
  oneInchWallet
82
79
  } from "./chunk-OESTDX6I.js";
83
80
  import {
84
- enkryptWallet
85
- } from "./chunk-OLOIXTYS.js";
81
+ oneKeyWallet
82
+ } from "./chunk-SHBUZ7U7.js";
83
+ import {
84
+ foxWallet
85
+ } from "./chunk-CNPKISHN.js";
86
86
  import {
87
87
  frameWallet
88
88
  } from "./chunk-IFON7E6U.js";
89
89
  import {
90
90
  frontierWallet
91
- } from "./chunk-TCAGNB4B.js";
91
+ } from "./chunk-VWCLFMWJ.js";
92
+ import {
93
+ gateWallet
94
+ } from "./chunk-CJGUM55H.js";
92
95
  import {
93
96
  imTokenWallet
94
97
  } from "./chunk-COZ7MIQS.js";
95
- import {
96
- gateWallet
97
- } from "./chunk-FKJJQNKX.js";
98
98
  import {
99
99
  injectedWallet
100
100
  } from "./chunk-XWUJE7MW.js";
101
101
  import {
102
- metaMaskWallet
103
- } from "./chunk-2HYNUNAS.js";
102
+ kresusWallet
103
+ } from "./chunk-MJXPRJZT.js";
104
104
  import {
105
- coin98Wallet
106
- } from "./chunk-OBOVHCEI.js";
105
+ bybitWallet
106
+ } from "./chunk-LNEC5RNX.js";
107
107
  import {
108
108
  clvWallet
109
- } from "./chunk-M3NZ6R2E.js";
109
+ } from "./chunk-2GJQ4XZQ.js";
110
+ import {
111
+ coin98Wallet
112
+ } from "./chunk-KIDC67XJ.js";
110
113
  import {
111
114
  coinbaseWallet
112
115
  } from "./chunk-H4IRCEZN.js";
113
- import {
114
- bybitWallet
115
- } from "./chunk-2STUC6QL.js";
116
- import {
117
- coreWallet
118
- } from "./chunk-VR4TBQ6S.js";
119
- import {
120
- foxWallet
121
- } from "./chunk-7QONTUXT.js";
122
116
  import {
123
117
  dawnWallet
124
118
  } from "./chunk-HWPKCIBE.js";
119
+ import {
120
+ coreWallet
121
+ } from "./chunk-JCHN6A47.js";
125
122
  import {
126
123
  desigWallet
127
124
  } from "./chunk-OPAZMNA7.js";
125
+ import {
126
+ enkryptWallet
127
+ } from "./chunk-OLOIXTYS.js";
128
128
  import {
129
129
  argentWallet
130
130
  } from "./chunk-WSQ2YJO2.js";
131
131
  import {
132
132
  bifrostWallet
133
- } from "./chunk-A5N6B5UW.js";
133
+ } from "./chunk-UIASLGLV.js";
134
134
  import {
135
135
  bitgetWallet
136
- } from "./chunk-TDAVGY5F.js";
136
+ } from "./chunk-5W7VDOCL.js";
137
137
  import {
138
138
  bitskiWallet
139
139
  } from "./chunk-HS3C7OQV.js";
140
140
  import {
141
141
  bitverseWallet
142
142
  } from "./chunk-3HZRRP4Y.js";
143
- import {
144
- bloomWallet
145
- } from "./chunk-S27IADFU.js";
146
- import "./chunk-23WIEY36.js";
147
143
  import {
148
144
  braveWallet
149
145
  } from "./chunk-BPZ2XJO2.js";
150
146
  import "./chunk-DNSG5Q7V.js";
147
+ import {
148
+ bloomWallet
149
+ } from "./chunk-S27IADFU.js";
150
+ import "./chunk-23WIEY36.js";
151
151
  export {
152
152
  argentWallet,
153
153
  bifrostWallet,
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  metaMaskWallet
4
- } from "../chunk-2HYNUNAS.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-UYGJO62F.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  metaMaskWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  okxWallet
4
- } from "../chunk-TDIEHTMB.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-AFXHGWBH.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  okxWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  rainbowWallet
4
- } from "../chunk-2KUBG3S6.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-3CICVJUN.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  rainbowWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  roninWallet
4
- } from "../chunk-NWIQNBJU.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-QLVVUKYB.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  roninWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  safepalWallet
4
- } from "../chunk-NT2HYJKW.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-EC6CHBSZ.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  safepalWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  subWallet
4
- } from "../chunk-JWFF4AAL.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-ZSI5N4VV.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  subWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  tokenPocketWallet
4
- } from "../chunk-2L43XSW3.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-J3LI3FYZ.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  tokenPocketWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  trustWallet
4
- } from "../chunk-VYBAYMP3.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-RKPCWHXL.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  trustWallet
9
9
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-SULRQO27.js";
5
- import "../chunk-23WIEY36.js";
4
+ } from "../chunk-Q3H3TRBS.js";
6
5
  import "../chunk-DNSG5Q7V.js";
6
+ import "../chunk-23WIEY36.js";
7
7
  export {
8
8
  zerionWallet
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funkit/connect",
3
- "version": "6.12.0",
3
+ "version": "6.12.3",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -92,12 +92,12 @@
92
92
  "ua-parser-js": "^1.0.37",
93
93
  "use-debounce": "^10.0.5",
94
94
  "uuid": "^9.0.1",
95
+ "@funkit/fun-relay": "2.0.2",
95
96
  "@funkit/api-base": "1.12.1",
96
97
  "@funkit/chains": "0.4.0",
98
+ "@funkit/wagmi-tools": "3.0.69",
97
99
  "@funkit/utils": "1.1.9",
98
- "@funkit/fun-relay": "2.0.2",
99
- "@funkit/core": "2.3.46",
100
- "@funkit/wagmi-tools": "3.0.68"
100
+ "@funkit/core": "2.3.46"
101
101
  },
102
102
  "repository": {
103
103
  "type": "git",