@funkit/connect 6.14.10 → 6.14.11

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 (42) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/components/FunCheckoutHistory/FunDirectExecutionHistoryDetail.d.ts +2 -1
  3. package/dist/components/YouPayYouReceive/YouPayYouReceive.d.ts +4 -1
  4. package/dist/hooks/queries/useRecentDirectExecutions.d.ts +9 -1
  5. package/dist/hooks/track/WithdrawModalEvent.d.ts +4 -0
  6. package/dist/hooks/track/useTrack.d.ts +3 -1
  7. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
  8. package/dist/hooks/useCheckoutDirectExecutionHistory.d.ts +10 -0
  9. package/dist/index.js +1097 -894
  10. package/dist/modals/CheckoutModal/FunCheckoutStep.d.ts +1 -0
  11. package/dist/modals/CheckoutModal/InputAmount/InputAmount.d.ts +2 -1
  12. package/dist/modals/CheckoutModal/MeldCurrencySelect/utils.d.ts +1 -0
  13. package/dist/modals/CheckoutModal/MeldRedirect/MeldRedirect.d.ts +14 -0
  14. package/dist/modals/CheckoutModal/TransferToken/DirectExecutionNotification.d.ts +2 -2
  15. package/dist/modals/CheckoutModal/TransferToken/types.d.ts +3 -2
  16. package/dist/modals/CheckoutModal/stepTransition.d.ts +3 -0
  17. package/dist/providers/FunkitCheckoutContext.d.ts +1 -1
  18. package/dist/providers/FunkitCheckoutContext.track.d.ts +4 -3
  19. package/dist/utils/checkout.d.ts +1 -1
  20. package/dist/utils/directExecution.d.ts +1 -0
  21. package/dist/utils/flags/config.d.ts +10 -9
  22. package/dist/utils/safeJSON.d.ts +1 -0
  23. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  28. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/index.js +53 -53
  33. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  38. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  42. package/package.json +5 -5
@@ -15,6 +15,7 @@ export declare enum FunCheckoutStep {
15
15
  FIAT_ACCOUNT_DETAIL = "fiat_account_detail",
16
16
  ERROR_SCREEN = "error_screen",
17
17
  MELD_QUOTES = "meld_quotes",
18
+ MELD_REDIRECT = "meld_redirect",
18
19
  MELD_CURRENCY_SELECT = "meld_currency_select",
19
20
  DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center"
20
21
  }
@@ -12,7 +12,8 @@ export type InputAmountNext = Record<string, never> | {
12
12
  fiatAmount: number | undefined;
13
13
  fiatCurrency?: string;
14
14
  provider?: MeldServiceProvider;
15
- nextStep?: FunCheckoutStep.SOURCE_CHANGE | FunCheckoutStep.MELD_CURRENCY_SELECT | FunCheckoutStep.MELD_QUOTES;
15
+ quote?: MeldQuote;
16
+ nextStep?: FunCheckoutStep.SOURCE_CHANGE | FunCheckoutStep.MELD_CURRENCY_SELECT | FunCheckoutStep.MELD_QUOTES | FunCheckoutStep.MELD_REDIRECT;
16
17
  };
17
18
  export declare const InputAmountInfo: ModalStepInfo<FunCheckoutStep.INPUT_AMOUNT>;
18
19
  export declare function InputAmount(props: ModalStepComponentProps<FunCheckoutStep.INPUT_AMOUNT>): React.JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const getFlagEmoji: (currencyCode: string) => string;
@@ -0,0 +1,14 @@
1
+ import type { MeldQuote } from '@funkit/api-base';
2
+ import React from 'react';
3
+ import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
4
+ import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
5
+ export type MeldRedirectState = CheckoutModalCommonState & {
6
+ paymentMethodInfo: PaymentMethodCardInfo;
7
+ /** Checkout amount in fiat */
8
+ fiatAmount: number | undefined;
9
+ fiatCurrency: string | undefined;
10
+ quote: MeldQuote;
11
+ };
12
+ export type MeldRedirectNext = Record<string, never>;
13
+ export declare const MeldRedirectInfo: ModalStepInfo<FunCheckoutStep.MELD_REDIRECT>;
14
+ export declare function MeldRedirect({ modalState, }: ModalStepComponentProps<FunCheckoutStep.MELD_REDIRECT>): React.JSX.Element;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
- import type { DirectExecution } from '@funkit/api-base';
3
2
  import type { Address } from 'viem';
3
+ import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
4
4
  interface DirectExecutionNotificationProps {
5
- directExecution: DirectExecution;
5
+ directExecution: MergedMultiStepDirectExecution;
6
6
  onClose: (id: string) => void;
7
7
  onHelp: (depositAddress: Address) => void;
8
8
  }
@@ -1,6 +1,7 @@
1
- import type { CheckoutHistoryItem, DirectExecution } from '@funkit/api-base';
1
+ import type { CheckoutHistoryItem } from '@funkit/api-base';
2
2
  import type { Address } from 'viem';
3
- export type NotificationItem = (DirectExecution & {
3
+ import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
4
+ export type NotificationItem = (MergedMultiStepDirectExecution & {
4
5
  isDirectExecution: true;
5
6
  }) | (CheckoutHistoryItem & {
6
7
  isDirectExecution: false;
@@ -14,6 +14,7 @@ import { type InputAmountNext, type InputAmountState } from './InputAmount/Input
14
14
  import { type LoadingAccountNext, type LoadingAccountState } from './LoadingAccount';
15
15
  import { type MeldCurrencySelectNext, type MeldCurrencySelectState } from './MeldCurrencySelect/MeldCurrencySelect';
16
16
  import { type MeldQuotesNext, type MeldQuotesState } from './MeldQuotes/MeldQuotes';
17
+ import { type MeldRedirectNext, type MeldRedirectState } from './MeldRedirect/MeldRedirect';
17
18
  import { type MoonpaySetupNext, type MoonpaySetupState } from './MoonpaySetup';
18
19
  import { type SelectAssetNext, type SelectAssetState } from './SelectAsset';
19
20
  import { type SourceChangeNext, type SourceChangeState } from './SourceChange/SourceChange';
@@ -81,6 +82,7 @@ export type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
81
82
  [FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailState;
82
83
  [FunCheckoutStep.ERROR_SCREEN]: ErrorScreenState;
83
84
  [FunCheckoutStep.MELD_QUOTES]: MeldQuotesState;
85
+ [FunCheckoutStep.MELD_REDIRECT]: MeldRedirectState;
84
86
  [FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectState;
85
87
  [FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: DirectExecutionNotifCenterState;
86
88
  }[T] & {
@@ -104,6 +106,7 @@ export type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
104
106
  [FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailNext;
105
107
  [FunCheckoutStep.ERROR_SCREEN]: null;
106
108
  [FunCheckoutStep.MELD_QUOTES]: MeldQuotesNext;
109
+ [FunCheckoutStep.MELD_REDIRECT]: MeldRedirectNext;
107
110
  [FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectNext;
108
111
  [FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: null;
109
112
  }[S] & {
@@ -207,7 +207,7 @@ interface FunkitCheckoutContextInterface {
207
207
  setCheckout: (checkout: FunkitActiveCheckoutItem) => void;
208
208
  setCompletedTimestamp(timestampMs: number): void;
209
209
  withdrawalItem: FunkitActiveWithdrawalItem | null;
210
- initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>): string;
210
+ initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>, config: UseFunkitCheckoutPropsWithFullConfig): string;
211
211
  updateWithdrawalSourceAssetAmount(newSourceAmount: number): void;
212
212
  }
213
213
  export type CheckoutProgressStep = 1 | 2;
@@ -1,8 +1,9 @@
1
- import { type TrackEventData } from '~/hooks/track/useTrack';
2
- import type { FunkitActiveCheckoutItem } from './FunkitCheckoutContext';
3
- export declare const trackEventFromActiveCheckoutItem: (activeCheckoutItem: FunkitActiveCheckoutItem) => TrackEventData;
1
+ import { CheckoutModalEvent, type TrackEventData } from '~/hooks/track/useTrack';
2
+ import type { FunkitActiveCheckoutItem, FunkitActiveWithdrawalItem } from './FunkitCheckoutContext';
3
+ export declare const trackEventFromActiveItem: (activeItem: FunkitActiveCheckoutItem | FunkitActiveWithdrawalItem, eventName: CheckoutModalEvent | WithdrawModalEvent) => TrackEventData;
4
4
  import type { RelayTxHash, RelayVmType } from '@funkit/fun-relay';
5
5
  import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
6
+ import type { WithdrawModalEvent } from '~/hooks/track/WithdrawModalEvent';
6
7
  export declare const trackEventFromDirectExecutionConfirmed: ({ txHash, checkoutItem, latestQuote, }: {
7
8
  txHash: RelayTxHash<RelayVmType>;
8
9
  checkoutItem: FunkitActiveCheckoutItem;
@@ -55,6 +55,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
55
55
  bypassInit: boolean;
56
56
  apiKey?: string;
57
57
  nonce?: bigint | undefined;
58
+ logger?: import("@funkit/api-base").Logger | undefined;
58
59
  fee?: {
59
60
  token?: string;
60
61
  amount?: number;
@@ -62,7 +63,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
62
63
  recipient: Address;
63
64
  } | undefined;
64
65
  skipDBAction?: boolean | undefined;
65
- logger?: import("@funkit/api-base").Logger | undefined;
66
66
  };
67
67
  export type TokenInfo = {
68
68
  symbol: string;
@@ -1,3 +1,4 @@
1
1
  import type { DirectExecution } from '@funkit/api-base';
2
+ export declare function getDirectExecutionCreatedTimeMs(directExecution: DirectExecution): number;
2
3
  export declare function getDirectExecutionUpdatedTimeMs(directExecution: DirectExecution): number;
3
4
  export declare function getDirectExecutionRunTimeSeconds(directExecution: DirectExecution): number;
@@ -8,13 +8,6 @@ export declare const flagConfig: {
8
8
  readonly type: "string";
9
9
  readonly default_value: string;
10
10
  readonly overrides: [{
11
- readonly if_any: [{
12
- readonly key: "apiKey";
13
- readonly type: "isAnyOf";
14
- readonly values: ["m4iHIILHcL4gN8EXCMzGe8zIdhuCXxck49mWajzJ", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e"];
15
- }];
16
- readonly value: string;
17
- }, {
18
11
  readonly if_any: [{
19
12
  readonly key: "apiKey";
20
13
  readonly type: "isAnyOf";
@@ -179,7 +172,6 @@ export declare const flagConfig: {
179
172
  readonly help_tutorial_url: {
180
173
  readonly type: "string";
181
174
  readonly default_value: "";
182
- readonly overrides: [];
183
175
  };
184
176
  readonly enable_card: {
185
177
  readonly type: "boolean";
@@ -203,11 +195,12 @@ export declare const flagConfig: {
203
195
  readonly enable_brokerage: {
204
196
  readonly type: "boolean";
205
197
  readonly default_value: false;
198
+ readonly overrides: [Override<boolean>];
206
199
  };
207
200
  readonly enable_meld_payment: {
208
201
  readonly type: "boolean";
209
202
  readonly default_value: false;
210
- readonly overrides: [{
203
+ readonly overrides: [Override<boolean>, {
211
204
  readonly if_any: [{
212
205
  readonly key: "userId";
213
206
  readonly type: "isAnyOf";
@@ -261,6 +254,14 @@ export declare const flagConfig: {
261
254
  readonly enable_bitcoin: {
262
255
  readonly type: "boolean";
263
256
  readonly default_value: true;
257
+ readonly overrides: [{
258
+ readonly if_any: [{
259
+ readonly key: "apiKey";
260
+ readonly type: "isAnyOf";
261
+ readonly values: ["M3uox3cw0u8YCPV9cIREA6AugUMvPFTk6qOpm4um"];
262
+ }];
263
+ readonly value: false;
264
+ }];
264
265
  };
265
266
  readonly chain_info_banners: {
266
267
  readonly type: "string";
@@ -2,3 +2,4 @@
2
2
  * This function is a wrapper around `safeParseJson()` from our `@funkit/utils` package with logging errors to our logger.
3
3
  */
4
4
  export declare function safeJSONParse<T>(src?: string): T | null;
5
+ export declare function useSafeJSONParse<T>(src?: string): T | null;
@@ -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,52 +1,52 @@
1
1
  "use client";
2
2
  import {
3
- walletConnectWallet
4
- } from "./chunk-NP5QGWNL.js";
3
+ xdefiWallet
4
+ } from "./chunk-BOU4WKRZ.js";
5
5
  import {
6
6
  zealWallet
7
7
  } from "./chunk-RNBEDQHF.js";
8
8
  import {
9
9
  zerionWallet
10
- } from "./chunk-SULRQO27.js";
10
+ } from "./chunk-Q3H3TRBS.js";
11
+ import {
12
+ subWallet
13
+ } from "./chunk-ZSI5N4VV.js";
11
14
  import {
12
15
  tahoWallet
13
16
  } from "./chunk-ZZZRUXZE.js";
14
- import {
15
- subWallet
16
- } from "./chunk-JWFF4AAL.js";
17
17
  import {
18
18
  talismanWallet
19
19
  } from "./chunk-DRO6WYMM.js";
20
20
  import {
21
21
  tokenPocketWallet
22
- } from "./chunk-2L43XSW3.js";
22
+ } from "./chunk-J3LI3FYZ.js";
23
+ import {
24
+ trustWallet
25
+ } from "./chunk-RKPCWHXL.js";
23
26
  import {
24
27
  tokenaryWallet
25
28
  } from "./chunk-D6AOOO5F.js";
26
- import {
27
- trustWallet
28
- } from "./chunk-VYBAYMP3.js";
29
29
  import {
30
30
  uniswapWallet
31
31
  } from "./chunk-LH7BMNFZ.js";
32
32
  import {
33
- xdefiWallet
34
- } from "./chunk-BOU4WKRZ.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
35
35
  import {
36
36
  phantomWallet
37
37
  } from "./chunk-362NXNTM.js";
38
+ import {
39
+ rabbyWallet
40
+ } from "./chunk-BBOM42DL.js";
38
41
  import {
39
42
  rainbowWallet
40
- } from "./chunk-2KUBG3S6.js";
43
+ } from "./chunk-3CICVJUN.js";
41
44
  import {
42
45
  ramperWallet
43
46
  } from "./chunk-BYXPFMI7.js";
44
- import {
45
- rabbyWallet
46
- } from "./chunk-BBOM42DL.js";
47
47
  import {
48
48
  roninWallet
49
- } from "./chunk-NWIQNBJU.js";
49
+ } from "./chunk-QLVVUKYB.js";
50
50
  import {
51
51
  safeWallet
52
52
  } from "./chunk-BQQQL6UD.js";
@@ -55,10 +55,13 @@ import {
55
55
  } from "./chunk-RZIO5TFF.js";
56
56
  import {
57
57
  safepalWallet
58
- } from "./chunk-NT2HYJKW.js";
58
+ } from "./chunk-EC6CHBSZ.js";
59
+ import {
60
+ ledgerWallet
61
+ } from "./chunk-BRBKM4PW.js";
59
62
  import {
60
63
  metaMaskWallet
61
- } from "./chunk-2HYNUNAS.js";
64
+ } from "./chunk-UYGJO62F.js";
62
65
  import {
63
66
  mewWallet
64
67
  } from "./chunk-OL5ZO7E4.js";
@@ -67,87 +70,84 @@ import {
67
70
  } from "./chunk-ADIXAKUL.js";
68
71
  import {
69
72
  okxWallet
70
- } from "./chunk-TDIEHTMB.js";
71
- import {
72
- oneInchWallet
73
- } from "./chunk-OESTDX6I.js";
74
- import {
75
- injectedWallet
76
- } from "./chunk-XWUJE7MW.js";
73
+ } from "./chunk-AFXHGWBH.js";
77
74
  import {
78
75
  omniWallet
79
76
  } from "./chunk-7CUY5G6R.js";
77
+ import {
78
+ oneInchWallet
79
+ } from "./chunk-OESTDX6I.js";
80
80
  import {
81
81
  oneKeyWallet
82
82
  } from "./chunk-SHBUZ7U7.js";
83
+ import {
84
+ foxWallet
85
+ } from "./chunk-CNPKISHN.js";
83
86
  import {
84
87
  frameWallet
85
88
  } from "./chunk-IFON7E6U.js";
86
89
  import {
87
- desigWallet
88
- } from "./chunk-OPAZMNA7.js";
90
+ frontierWallet
91
+ } from "./chunk-VWCLFMWJ.js";
92
+ import {
93
+ gateWallet
94
+ } from "./chunk-CJGUM55H.js";
89
95
  import {
90
96
  imTokenWallet
91
97
  } from "./chunk-COZ7MIQS.js";
92
98
  import {
93
- gateWallet
94
- } from "./chunk-FKJJQNKX.js";
95
- import {
96
- frontierWallet
97
- } from "./chunk-TCAGNB4B.js";
99
+ injectedWallet
100
+ } from "./chunk-XWUJE7MW.js";
98
101
  import {
99
102
  kresusWallet
100
103
  } from "./chunk-MJXPRJZT.js";
101
- import {
102
- ledgerWallet
103
- } from "./chunk-BRBKM4PW.js";
104
104
  import {
105
105
  bybitWallet
106
- } from "./chunk-2STUC6QL.js";
106
+ } from "./chunk-LNEC5RNX.js";
107
107
  import {
108
108
  clvWallet
109
- } from "./chunk-M3NZ6R2E.js";
110
- import {
111
- coin98Wallet
112
- } from "./chunk-OBOVHCEI.js";
109
+ } from "./chunk-2GJQ4XZQ.js";
113
110
  import {
114
111
  coinbaseWallet
115
112
  } from "./chunk-H4IRCEZN.js";
113
+ import {
114
+ coin98Wallet
115
+ } from "./chunk-KIDC67XJ.js";
116
116
  import {
117
117
  coreWallet
118
- } from "./chunk-VR4TBQ6S.js";
118
+ } from "./chunk-JCHN6A47.js";
119
119
  import {
120
120
  dawnWallet
121
121
  } from "./chunk-HWPKCIBE.js";
122
+ import {
123
+ desigWallet
124
+ } from "./chunk-OPAZMNA7.js";
122
125
  import {
123
126
  enkryptWallet
124
127
  } from "./chunk-OLOIXTYS.js";
125
- import {
126
- foxWallet
127
- } from "./chunk-7QONTUXT.js";
128
128
  import {
129
129
  argentWallet
130
130
  } from "./chunk-WSQ2YJO2.js";
131
- import {
132
- bifrostWallet
133
- } from "./chunk-A5N6B5UW.js";
134
131
  import {
135
132
  bitskiWallet
136
133
  } from "./chunk-HS3C7OQV.js";
134
+ import {
135
+ bifrostWallet
136
+ } from "./chunk-UIASLGLV.js";
137
137
  import {
138
138
  bitgetWallet
139
- } from "./chunk-TDAVGY5F.js";
139
+ } from "./chunk-5W7VDOCL.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.14.10",
3
+ "version": "6.14.11",
4
4
  "description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
5
5
  "files": [
6
6
  "dist",
@@ -93,12 +93,12 @@
93
93
  "ua-parser-js": "^1.0.37",
94
94
  "use-debounce": "^10.0.5",
95
95
  "uuid": "^9.0.1",
96
- "@funkit/api-base": "1.12.8",
96
+ "@funkit/api-base": "1.12.9",
97
97
  "@funkit/chains": "0.4.2",
98
+ "@funkit/utils": "1.1.13",
98
99
  "@funkit/fun-relay": "2.1.1",
99
- "@funkit/wagmi-tools": "3.0.76",
100
- "@funkit/core": "2.3.53",
101
- "@funkit/utils": "1.1.13"
100
+ "@funkit/wagmi-tools": "3.0.77",
101
+ "@funkit/core": "2.3.54"
102
102
  },
103
103
  "repository": {
104
104
  "type": "git",