@funkit/connect 6.14.0-next.2 → 6.14.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 (38) hide show
  1. package/CHANGELOG.md +66 -0
  2. package/dist/{chunk-AYZ7Y4HD.js → chunk-4WTYVVDI.js} +8 -4
  3. package/dist/{chunk-H2VLM4QU.js → chunk-CSLMZ5KJ.js} +8 -4
  4. package/dist/{chunk-65VC5BJ7.js → chunk-WCUXJAGT.js} +9 -4
  5. package/dist/components/Box/Box.d.ts +29 -29
  6. package/dist/css/sprinkles.css.d.ts +37 -29
  7. package/dist/domains/asset.d.ts +1 -1
  8. package/dist/index.css +2969 -2861
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.js +199 -145
  11. package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutQuote.d.ts +2 -1
  12. package/dist/modals/WithdrwalModal/useWithdrawal.d.ts +1 -1
  13. package/dist/providers/FunkitCheckoutContext.d.ts +8 -7
  14. package/dist/providers/FunkitThemeProvider.d.ts +12 -0
  15. package/dist/themes/baseTheme.js +1 -1
  16. package/dist/themes/darkTheme.js +2 -2
  17. package/dist/themes/lightTheme.js +2 -2
  18. package/dist/utils/flags/config.d.ts +14 -2
  19. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  24. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/index.js +48 -48
  29. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  38. package/package.json +6 -6
@@ -3,6 +3,7 @@ interface TriggerNewQuoteOptions {
3
3
  maxRetries: number;
4
4
  }
5
5
  interface UseCheckoutQuoteOptions {
6
+ targetAssetunitPrice: number;
6
7
  onFailure: (error: CheckoutQuoteError) => void;
7
8
  onSuccess?: () => void;
8
9
  }
@@ -12,5 +13,5 @@ interface UseCheckoutQuoteResult {
12
13
  step: string | null;
13
14
  triggerNewQuote: (options: TriggerNewQuoteOptions) => void;
14
15
  }
15
- export declare function useCheckoutQuote({ onFailure, onSuccess, }: UseCheckoutQuoteOptions): UseCheckoutQuoteResult;
16
+ export declare function useCheckoutQuote({ targetAssetunitPrice, onFailure, onSuccess, }: UseCheckoutQuoteOptions): UseCheckoutQuoteResult;
16
17
  export {};
@@ -10,7 +10,7 @@ interface UseWithdrawalResult {
10
10
  }
11
11
  export type WithdrawalFormData = {
12
12
  destinationAddress: Address;
13
- amount: string;
13
+ withdrawalUSD: string;
14
14
  tokenSymbol: string;
15
15
  tokenAddress: Address;
16
16
  chainId: number;
@@ -7,9 +7,11 @@ import type { AssetHoldingsItem } from '../utils/assets';
7
7
  import type { WithdrawalClient } from '../wallets/Wallet';
8
8
  import { type FunkitCheckoutQuoteResult } from './FunkitHistoryContext';
9
9
  export type FunkitCheckoutActionParams = ApiFunkitCheckoutActionParams;
10
- export interface DynamicTargetAssetCandidate {
10
+ export interface TokenInfo {
11
11
  tokenAddress: Address;
12
12
  tokenChainId: string;
13
+ }
14
+ export interface DynamicTargetAssetCandidate extends TokenInfo {
13
15
  iconSrc: string;
14
16
  tokenSymbol: string;
15
17
  isDefault?: boolean;
@@ -53,17 +55,14 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
53
55
  /** Address of the source token on the source chain. Required if startingStep is set to FunCheckoutStartingStep.CONFIRMATION. */
54
56
  sourceTokenAddress?: Address;
55
57
  /** Address list of the tokens that cannot be used as source. e.g. tokens for staking vault */
56
- disabledSourceTokens?: {
57
- tokenAddress: Address;
58
- tokenChainId: string;
59
- }[];
58
+ disabledSourceTokens?: TokenInfo[];
60
59
  /** *****************************
61
60
  * Miscellaneous configurations *
62
61
  ********************************/
63
62
  /** a list of candidate assets to be chosen dynamically */
64
63
  dynamicTargetAssetCandidates?: DynamicTargetAssetCandidate[];
65
- /** minimal toAmount needed to proceed checkout. Checked after quote */
66
- targetAssetMinAmount?: number;
64
+ /** minimal USD needed to deposit */
65
+ getMinDepositUSD?: (asset: TokenInfo) => number;
67
66
  /** For Checkout with Custom Action, QRCode needs special action type
68
67
  * to specify the onchain action to execute after deposit */
69
68
  qrcodeActionType?: string;
@@ -82,6 +81,8 @@ export interface WithdrawalConfigBase {
82
81
  sourceTokenAddress: Address;
83
82
  /** Disable connected option for email login user */
84
83
  disableConnectedWallet?: boolean;
84
+ /** minimal USD needed to withdraw */
85
+ getMinWithdrawalUSD?: (asset: TokenInfo) => number;
85
86
  }
86
87
  export interface WalletWithdrawalConfig extends WithdrawalConfigBase {
87
88
  /** Wallet instance used to execute the quote */
@@ -72,6 +72,7 @@ export declare const useActiveTheme: () => {
72
72
  transparent: string;
73
73
  buttonBackgroundTertiary: string;
74
74
  buttonBackgroundHoverTertiary: string;
75
+ buttonBackgroundDisabledTertiary: string;
75
76
  buttonTextTertiary: string;
76
77
  buttonTextDisabledTertiary: string;
77
78
  buttonBackground: string;
@@ -214,6 +215,7 @@ export declare const useActiveTheme: () => {
214
215
  tooltip: string;
215
216
  dropdown: string;
216
217
  dropdownItem: string;
218
+ modalTopbarIcon: string;
217
219
  };
218
220
  borderWidths: {
219
221
  activeOptionBorderWidth: string;
@@ -228,6 +230,8 @@ export declare const useActiveTheme: () => {
228
230
  qrCode: string;
229
231
  buttonFocusedShadow: string;
230
232
  buttonHoverShadow: string;
233
+ buttonFocusedShadowTertiary: string;
234
+ buttonHoverShadowTertiary: string;
231
235
  buttonDisabledShadow: string;
232
236
  selectedDropdownItem: string;
233
237
  };
@@ -297,6 +301,7 @@ export declare const useActiveTheme: () => {
297
301
  transparent: string;
298
302
  buttonBackgroundTertiary: string;
299
303
  buttonBackgroundHoverTertiary: string;
304
+ buttonBackgroundDisabledTertiary: string;
300
305
  buttonTextTertiary: string;
301
306
  buttonTextDisabledTertiary: string;
302
307
  buttonBackground: string;
@@ -439,6 +444,7 @@ export declare const useActiveTheme: () => {
439
444
  tooltip: string;
440
445
  dropdown: string;
441
446
  dropdownItem: string;
447
+ modalTopbarIcon: string;
442
448
  };
443
449
  borderWidths: {
444
450
  activeOptionBorderWidth: string;
@@ -453,6 +459,8 @@ export declare const useActiveTheme: () => {
453
459
  qrCode: string;
454
460
  buttonFocusedShadow: string;
455
461
  buttonHoverShadow: string;
462
+ buttonFocusedShadowTertiary: string;
463
+ buttonHoverShadowTertiary: string;
456
464
  buttonDisabledShadow: string;
457
465
  selectedDropdownItem: string;
458
466
  };
@@ -520,6 +528,7 @@ export declare const useActiveTheme: () => {
520
528
  transparent: string;
521
529
  buttonBackgroundTertiary: string;
522
530
  buttonBackgroundHoverTertiary: string;
531
+ buttonBackgroundDisabledTertiary: string;
523
532
  buttonTextTertiary: string;
524
533
  buttonTextDisabledTertiary: string;
525
534
  buttonBackground: string;
@@ -662,6 +671,7 @@ export declare const useActiveTheme: () => {
662
671
  tooltip: string;
663
672
  dropdown: string;
664
673
  dropdownItem: string;
674
+ modalTopbarIcon: string;
665
675
  };
666
676
  borderWidths: {
667
677
  activeOptionBorderWidth: string;
@@ -676,6 +686,8 @@ export declare const useActiveTheme: () => {
676
686
  qrCode: string;
677
687
  buttonFocusedShadow: string;
678
688
  buttonHoverShadow: string;
689
+ buttonFocusedShadowTertiary: string;
690
+ buttonHoverShadowTertiary: string;
679
691
  buttonDisabledShadow: string;
680
692
  selectedDropdownItem: string;
681
693
  };
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  baseTheme,
4
4
  systemFontStack
5
- } from "../chunk-65VC5BJ7.js";
5
+ } from "../chunk-WCUXJAGT.js";
6
6
  export {
7
7
  baseTheme,
8
8
  systemFontStack
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-H2VLM4QU.js";
5
- import "../chunk-65VC5BJ7.js";
4
+ } from "../chunk-CSLMZ5KJ.js";
5
+ import "../chunk-WCUXJAGT.js";
6
6
  export {
7
7
  darkTheme
8
8
  };
@@ -1,8 +1,8 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-AYZ7Y4HD.js";
5
- import "../chunk-65VC5BJ7.js";
4
+ } from "../chunk-4WTYVVDI.js";
5
+ import "../chunk-WCUXJAGT.js";
6
6
  export {
7
7
  lightTheme
8
8
  };
@@ -17,7 +17,7 @@ export declare const flagConfig: {
17
17
  readonly if_any: [{
18
18
  readonly key: "apiKey";
19
19
  readonly type: "isAnyOf";
20
- readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4"];
20
+ readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
21
21
  }];
22
22
  readonly value: "";
23
23
  }];
@@ -187,7 +187,7 @@ export declare const flagConfig: {
187
187
  readonly if_any: [{
188
188
  readonly key: "apiKey";
189
189
  readonly type: "isAnyOf";
190
- readonly values: ["OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4"];
190
+ readonly values: ["OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
191
191
  }];
192
192
  readonly value: false;
193
193
  }];
@@ -266,5 +266,17 @@ export declare const flagConfig: {
266
266
  readonly type: "string";
267
267
  readonly default_value: string;
268
268
  };
269
+ readonly permit2_tokens: {
270
+ readonly type: "string";
271
+ readonly default_value: string;
272
+ readonly overrides: [{
273
+ readonly if_any: [{
274
+ readonly key: "apiKey";
275
+ readonly type: "isAnyOf";
276
+ readonly values: ["clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e"];
277
+ }];
278
+ readonly value: string;
279
+ }];
280
+ };
269
281
  };
270
282
  export type FlagConfig = typeof flagConfig;
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-UIASLGLV.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-A5N6B5UW.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-5W7VDOCL.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-TDAVGY5F.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-LNEC5RNX.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-2STUC6QL.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-2GJQ4XZQ.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-M3NZ6R2E.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-KIDC67XJ.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-OBOVHCEI.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-JCHN6A47.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-VR4TBQ6S.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-CNPKISHN.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-7QONTUXT.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-VWCLFMWJ.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-TCAGNB4B.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-CJGUM55H.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-FKJJQNKX.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.js";
7
7
  export {
8
8
  gateWallet
9
9
  };
@@ -1,7 +1,4 @@
1
1
  "use client";
2
- import {
3
- zerionWallet
4
- } from "./chunk-Q3H3TRBS.js";
5
2
  import {
6
3
  xdefiWallet
7
4
  } from "./chunk-BOU4WKRZ.js";
@@ -9,20 +6,23 @@ import {
9
6
  zealWallet
10
7
  } from "./chunk-RNBEDQHF.js";
11
8
  import {
12
- safepalWallet
13
- } from "./chunk-EC6CHBSZ.js";
9
+ zerionWallet
10
+ } from "./chunk-SULRQO27.js";
11
+ import {
12
+ subWallet
13
+ } from "./chunk-JWFF4AAL.js";
14
+ import {
15
+ tahoWallet
16
+ } from "./chunk-ZZZRUXZE.js";
14
17
  import {
15
18
  talismanWallet
16
19
  } from "./chunk-DRO6WYMM.js";
17
- import {
18
- subWallet
19
- } from "./chunk-ZSI5N4VV.js";
20
20
  import {
21
21
  tokenPocketWallet
22
- } from "./chunk-J3LI3FYZ.js";
22
+ } from "./chunk-2L43XSW3.js";
23
23
  import {
24
24
  trustWallet
25
- } from "./chunk-RKPCWHXL.js";
25
+ } from "./chunk-VYBAYMP3.js";
26
26
  import {
27
27
  tokenaryWallet
28
28
  } from "./chunk-D6AOOO5F.js";
@@ -38,60 +38,60 @@ import {
38
38
  import {
39
39
  rabbyWallet
40
40
  } from "./chunk-BBOM42DL.js";
41
+ import {
42
+ rainbowWallet
43
+ } from "./chunk-2KUBG3S6.js";
41
44
  import {
42
45
  ramperWallet
43
46
  } from "./chunk-BYXPFMI7.js";
44
- import {
45
- rainbowWallet
46
- } from "./chunk-3CICVJUN.js";
47
47
  import {
48
48
  safeWallet
49
49
  } from "./chunk-BQQQL6UD.js";
50
- import {
51
- roninWallet
52
- } from "./chunk-QLVVUKYB.js";
53
50
  import {
54
51
  safeheronWallet
55
52
  } from "./chunk-RZIO5TFF.js";
56
53
  import {
57
- tahoWallet
58
- } from "./chunk-ZZZRUXZE.js";
54
+ roninWallet
55
+ } from "./chunk-NWIQNBJU.js";
59
56
  import {
60
- ledgerWallet
61
- } from "./chunk-BRBKM4PW.js";
57
+ safepalWallet
58
+ } from "./chunk-NT2HYJKW.js";
62
59
  import {
63
60
  metaMaskWallet
64
- } from "./chunk-UYGJO62F.js";
61
+ } from "./chunk-2HYNUNAS.js";
62
+ import {
63
+ ledgerWallet
64
+ } from "./chunk-BRBKM4PW.js";
65
65
  import {
66
66
  mewWallet
67
67
  } from "./chunk-OL5ZO7E4.js";
68
68
  import {
69
69
  oktoWallet
70
70
  } from "./chunk-ADIXAKUL.js";
71
- import {
72
- oneKeyWallet
73
- } from "./chunk-SHBUZ7U7.js";
74
- import {
75
- okxWallet
76
- } from "./chunk-AFXHGWBH.js";
77
71
  import {
78
72
  omniWallet
79
73
  } from "./chunk-7CUY5G6R.js";
80
74
  import {
81
75
  oneInchWallet
82
76
  } from "./chunk-OESTDX6I.js";
77
+ import {
78
+ okxWallet
79
+ } from "./chunk-TDIEHTMB.js";
80
+ import {
81
+ oneKeyWallet
82
+ } from "./chunk-SHBUZ7U7.js";
83
83
  import {
84
84
  foxWallet
85
- } from "./chunk-CNPKISHN.js";
85
+ } from "./chunk-7QONTUXT.js";
86
86
  import {
87
87
  frameWallet
88
88
  } from "./chunk-IFON7E6U.js";
89
89
  import {
90
90
  frontierWallet
91
- } from "./chunk-VWCLFMWJ.js";
91
+ } from "./chunk-TCAGNB4B.js";
92
92
  import {
93
93
  gateWallet
94
- } from "./chunk-CJGUM55H.js";
94
+ } from "./chunk-FKJJQNKX.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
@@ -101,53 +101,53 @@ import {
101
101
  import {
102
102
  kresusWallet
103
103
  } from "./chunk-MJXPRJZT.js";
104
- import {
105
- braveWallet
106
- } from "./chunk-BPZ2XJO2.js";
107
104
  import {
108
105
  clvWallet
109
- } from "./chunk-2GJQ4XZQ.js";
106
+ } from "./chunk-M3NZ6R2E.js";
107
+ import {
108
+ bloomWallet
109
+ } from "./chunk-S27IADFU.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-KIDC67XJ.js";
112
+ } from "./chunk-OBOVHCEI.js";
113
113
  import {
114
114
  coinbaseWallet
115
115
  } from "./chunk-H4IRCEZN.js";
116
+ import {
117
+ coreWallet
118
+ } from "./chunk-VR4TBQ6S.js";
116
119
  import {
117
120
  desigWallet
118
121
  } from "./chunk-OPAZMNA7.js";
119
- import {
120
- coreWallet
121
- } from "./chunk-JCHN6A47.js";
122
122
  import {
123
123
  dawnWallet
124
124
  } from "./chunk-HWPKCIBE.js";
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-OLOIXTYS.js";
128
- import {
129
- bifrostWallet
130
- } from "./chunk-UIASLGLV.js";
131
128
  import {
132
129
  argentWallet
133
130
  } from "./chunk-WSQ2YJO2.js";
134
- import {
135
- bitgetWallet
136
- } from "./chunk-5W7VDOCL.js";
137
131
  import {
138
132
  bitskiWallet
139
133
  } from "./chunk-HS3C7OQV.js";
134
+ import {
135
+ bifrostWallet
136
+ } from "./chunk-A5N6B5UW.js";
140
137
  import {
141
138
  bitverseWallet
142
139
  } from "./chunk-3HZRRP4Y.js";
143
140
  import {
144
- bloomWallet
145
- } from "./chunk-S27IADFU.js";
141
+ bitgetWallet
142
+ } from "./chunk-TDAVGY5F.js";
143
+ import {
144
+ braveWallet
145
+ } from "./chunk-BPZ2XJO2.js";
146
146
  import {
147
147
  bybitWallet
148
- } from "./chunk-LNEC5RNX.js";
149
- import "./chunk-DNSG5Q7V.js";
148
+ } from "./chunk-2STUC6QL.js";
150
149
  import "./chunk-23WIEY36.js";
150
+ import "./chunk-DNSG5Q7V.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-UYGJO62F.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-2HYNUNAS.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-AFXHGWBH.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-TDIEHTMB.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-3CICVJUN.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-2KUBG3S6.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-QLVVUKYB.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-NWIQNBJU.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-EC6CHBSZ.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-NT2HYJKW.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-ZSI5N4VV.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-JWFF4AAL.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-J3LI3FYZ.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-2L43XSW3.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-RKPCWHXL.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-VYBAYMP3.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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-Q3H3TRBS.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-SULRQO27.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.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.14.0-next.2",
3
+ "version": "6.14.0",
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/api-base": "1.12.3-next.1",
96
- "@funkit/core": "2.3.48-next.1",
95
+ "@funkit/api-base": "1.12.3",
96
+ "@funkit/core": "2.3.48",
97
+ "@funkit/utils": "1.1.11",
97
98
  "@funkit/chains": "0.4.0",
98
- "@funkit/utils": "1.1.10",
99
- "@funkit/fun-relay": "2.0.3-next.0",
100
- "@funkit/wagmi-tools": "3.0.71-next.1"
99
+ "@funkit/wagmi-tools": "3.0.71",
100
+ "@funkit/fun-relay": "2.0.3"
101
101
  },
102
102
  "repository": {
103
103
  "type": "git",