@funkit/connect 6.14.9 → 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 (41) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/components/FunCheckoutHistory/FunDirectExecutionHistoryDetail.d.ts +2 -1
  3. package/dist/components/YouPayYouReceive/YouPayYouReceive.d.ts +4 -1
  4. package/dist/domains/bridge.d.ts +3 -1
  5. package/dist/hooks/queries/useRecentDirectExecutions.d.ts +9 -1
  6. package/dist/hooks/track/WithdrawModalEvent.d.ts +4 -0
  7. package/dist/hooks/track/useTrack.d.ts +3 -1
  8. package/dist/hooks/useCheckoutDirectExecutionHistory.d.ts +10 -0
  9. package/dist/index.js +1137 -929
  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/directExecution.d.ts +1 -0
  20. package/dist/utils/flags/config.d.ts +11 -10
  21. package/dist/utils/safeJSON.d.ts +1 -0
  22. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  23. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  27. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  28. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/index.js +57 -57
  32. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  38. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  41. package/package.json +4 -4
@@ -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;
@@ -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";
@@ -46,7 +39,7 @@ export declare const flagConfig: {
46
39
  readonly if_any: [{
47
40
  readonly key: "apiKey";
48
41
  readonly type: "isAnyOf";
49
- readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2"];
42
+ readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2", "M3uox3cw0u8YCPV9cIREA6AugUMvPFTk6qOpm4um"];
50
43
  }];
51
44
  readonly value: true;
52
45
  }];
@@ -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,16 +1,16 @@
1
1
  "use client";
2
- import {
3
- zealWallet
4
- } from "./chunk-RNBEDQHF.js";
5
2
  import {
6
3
  xdefiWallet
7
4
  } from "./chunk-BOU4WKRZ.js";
5
+ import {
6
+ zealWallet
7
+ } from "./chunk-RNBEDQHF.js";
8
8
  import {
9
9
  zerionWallet
10
- } from "./chunk-SULRQO27.js";
10
+ } from "./chunk-Q3H3TRBS.js";
11
11
  import {
12
12
  subWallet
13
- } from "./chunk-JWFF4AAL.js";
13
+ } from "./chunk-ZSI5N4VV.js";
14
14
  import {
15
15
  tahoWallet
16
16
  } from "./chunk-ZZZRUXZE.js";
@@ -19,16 +19,16 @@ import {
19
19
  } from "./chunk-DRO6WYMM.js";
20
20
  import {
21
21
  tokenPocketWallet
22
- } from "./chunk-2L43XSW3.js";
22
+ } from "./chunk-J3LI3FYZ.js";
23
23
  import {
24
24
  trustWallet
25
- } from "./chunk-VYBAYMP3.js";
26
- import {
27
- uniswapWallet
28
- } from "./chunk-LH7BMNFZ.js";
25
+ } from "./chunk-RKPCWHXL.js";
29
26
  import {
30
27
  tokenaryWallet
31
28
  } from "./chunk-D6AOOO5F.js";
29
+ import {
30
+ uniswapWallet
31
+ } from "./chunk-LH7BMNFZ.js";
32
32
  import {
33
33
  walletConnectWallet
34
34
  } from "./chunk-NP5QGWNL.js";
@@ -36,118 +36,118 @@ import {
36
36
  phantomWallet
37
37
  } from "./chunk-362NXNTM.js";
38
38
  import {
39
- oneKeyWallet
40
- } from "./chunk-SHBUZ7U7.js";
39
+ rabbyWallet
40
+ } from "./chunk-BBOM42DL.js";
41
+ import {
42
+ rainbowWallet
43
+ } from "./chunk-3CICVJUN.js";
41
44
  import {
42
45
  ramperWallet
43
46
  } from "./chunk-BYXPFMI7.js";
44
47
  import {
45
48
  roninWallet
46
- } from "./chunk-NWIQNBJU.js";
47
- import {
48
- rainbowWallet
49
- } from "./chunk-2KUBG3S6.js";
49
+ } from "./chunk-QLVVUKYB.js";
50
50
  import {
51
51
  safeWallet
52
52
  } from "./chunk-BQQQL6UD.js";
53
- import {
54
- safepalWallet
55
- } from "./chunk-NT2HYJKW.js";
56
53
  import {
57
54
  safeheronWallet
58
55
  } from "./chunk-RZIO5TFF.js";
59
56
  import {
60
- mewWallet
61
- } from "./chunk-OL5ZO7E4.js";
62
- import {
63
- metaMaskWallet
64
- } from "./chunk-2HYNUNAS.js";
57
+ safepalWallet
58
+ } from "./chunk-EC6CHBSZ.js";
65
59
  import {
66
60
  ledgerWallet
67
61
  } from "./chunk-BRBKM4PW.js";
68
62
  import {
69
- okxWallet
70
- } from "./chunk-TDIEHTMB.js";
63
+ metaMaskWallet
64
+ } from "./chunk-UYGJO62F.js";
65
+ import {
66
+ mewWallet
67
+ } from "./chunk-OL5ZO7E4.js";
71
68
  import {
72
69
  oktoWallet
73
70
  } from "./chunk-ADIXAKUL.js";
74
71
  import {
75
- oneInchWallet
76
- } from "./chunk-OESTDX6I.js";
72
+ okxWallet
73
+ } from "./chunk-AFXHGWBH.js";
77
74
  import {
78
75
  omniWallet
79
76
  } from "./chunk-7CUY5G6R.js";
80
77
  import {
81
- rabbyWallet
82
- } from "./chunk-BBOM42DL.js";
78
+ oneInchWallet
79
+ } from "./chunk-OESTDX6I.js";
80
+ import {
81
+ oneKeyWallet
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
90
  frontierWallet
88
- } from "./chunk-TCAGNB4B.js";
89
- import {
90
- enkryptWallet
91
- } from "./chunk-OLOIXTYS.js";
91
+ } from "./chunk-VWCLFMWJ.js";
92
92
  import {
93
93
  gateWallet
94
- } from "./chunk-FKJJQNKX.js";
94
+ } from "./chunk-CJGUM55H.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
98
+ import {
99
+ injectedWallet
100
+ } from "./chunk-XWUJE7MW.js";
98
101
  import {
99
102
  kresusWallet
100
103
  } from "./chunk-MJXPRJZT.js";
101
104
  import {
102
- injectedWallet
103
- } from "./chunk-XWUJE7MW.js";
105
+ bybitWallet
106
+ } from "./chunk-LNEC5RNX.js";
104
107
  import {
105
108
  clvWallet
106
- } from "./chunk-M3NZ6R2E.js";
109
+ } from "./chunk-2GJQ4XZQ.js";
107
110
  import {
108
- bybitWallet
109
- } from "./chunk-2STUC6QL.js";
111
+ coinbaseWallet
112
+ } from "./chunk-H4IRCEZN.js";
110
113
  import {
111
114
  coin98Wallet
112
- } from "./chunk-OBOVHCEI.js";
115
+ } from "./chunk-KIDC67XJ.js";
113
116
  import {
114
117
  coreWallet
115
- } from "./chunk-VR4TBQ6S.js";
118
+ } from "./chunk-JCHN6A47.js";
116
119
  import {
117
120
  dawnWallet
118
121
  } from "./chunk-HWPKCIBE.js";
119
- import {
120
- coinbaseWallet
121
- } from "./chunk-H4IRCEZN.js";
122
122
  import {
123
123
  desigWallet
124
124
  } from "./chunk-OPAZMNA7.js";
125
125
  import {
126
- foxWallet
127
- } from "./chunk-7QONTUXT.js";
128
- import {
129
- bitgetWallet
130
- } from "./chunk-TDAVGY5F.js";
126
+ enkryptWallet
127
+ } from "./chunk-OLOIXTYS.js";
131
128
  import {
132
129
  argentWallet
133
130
  } from "./chunk-WSQ2YJO2.js";
134
- import {
135
- bifrostWallet
136
- } from "./chunk-A5N6B5UW.js";
137
131
  import {
138
132
  bitskiWallet
139
133
  } from "./chunk-HS3C7OQV.js";
134
+ import {
135
+ bifrostWallet
136
+ } from "./chunk-UIASLGLV.js";
137
+ import {
138
+ bitgetWallet
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.9",
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/core": "2.3.53",
99
98
  "@funkit/utils": "1.1.13",
100
99
  "@funkit/fun-relay": "2.1.1",
101
- "@funkit/wagmi-tools": "3.0.76"
100
+ "@funkit/wagmi-tools": "3.0.77",
101
+ "@funkit/core": "2.3.54"
102
102
  },
103
103
  "repository": {
104
104
  "type": "git",