@funkit/connect 6.5.0 → 6.6.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 (47) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/{chunk-IR3HFYKM.js → chunk-AYGZMDTC.js} +3 -0
  3. package/dist/{chunk-Z3KNAO7N.js → chunk-UOY5XFCR.js} +3 -0
  4. package/dist/components/Box/Box.d.ts +13 -13
  5. package/dist/components/Dropdown/BaseDropdownItem.d.ts +2 -1
  6. package/dist/components/Dropdown/ChainDropdown.d.ts +1 -6
  7. package/dist/components/Dropdown/TokenDropdown.d.ts +1 -6
  8. package/dist/components/FunInput/FunInput.d.ts +4 -4
  9. package/dist/components/Icons/SpinnerIconWithBackground.d.ts +1 -1
  10. package/dist/components/MeldQuoteItem/MeldQuoteItem.d.ts +2 -1
  11. package/dist/components/SourceMeldQuoteItem/SourceMeldQuoteItem.d.ts +4 -2
  12. package/dist/consts/customers.d.ts +1 -0
  13. package/dist/css/sprinkles.css.d.ts +19 -13
  14. package/dist/domains/meld.d.ts +2 -0
  15. package/dist/hooks/useTextMeasurer.d.ts +3 -0
  16. package/dist/index.css +872 -809
  17. package/dist/index.js +1084 -672
  18. package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +2 -2
  19. package/dist/modals/CheckoutModal/InputAmount/state.d.ts +8 -1
  20. package/dist/modals/CheckoutModal/InputAmount/useAmountInput.d.ts +4 -1
  21. package/dist/modals/CheckoutModal/InputAmount/utils.d.ts +27 -0
  22. package/dist/modals/CheckoutModal/MeldQuotes/MeldQuotes.d.ts +1 -1
  23. package/dist/providers/FunkitCheckoutContext.d.ts +2 -8
  24. package/dist/providers/FunkitConfigContext.d.ts +0 -7
  25. package/dist/providers/FunkitThemeProvider.d.ts +9 -0
  26. package/dist/themes/darkTheme.js +1 -1
  27. package/dist/themes/lightTheme.js +1 -1
  28. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  33. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/index.js +63 -63
  38. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  43. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  44. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  45. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  46. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  47. package/package.json +6 -6
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import type { FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
2
+ import { type FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
3
3
  import type { AssetHoldingsItem } from '~/utils/assets';
4
4
  import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
5
5
  import { FunCheckoutStep, type ModalStepComponentProps } from '../stepTransition';
@@ -15,5 +15,5 @@ interface InputAmountLoadedProps extends ModalStepComponentProps<FunCheckoutStep
15
15
  export declare function openMeldPopup(linkGetter: () => Promise<{
16
16
  widgetUrl: string;
17
17
  }>): Promise<void>;
18
- export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, sourceHolding, unitPrice, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
18
+ export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, onClose, sourceHolding, unitPrice, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
19
19
  export {};
@@ -15,6 +15,8 @@ export interface AmountInputInitOptions {
15
15
  minUsd?: number;
16
16
  /** Currency code for the currently selected fiat currency. Defaults to USD */
17
17
  fiatCurrency?: string;
18
+ /** Locale */
19
+ locale: Intl.LocalesArgument;
18
20
  /** Quick options, in fiat (not %) */
19
21
  quickOptions?: number[];
20
22
  }
@@ -29,6 +31,8 @@ export interface AmountInputState {
29
31
  inputValue: string;
30
32
  /** Whether the input is currently in fiat */
31
33
  isInputInFiat: boolean;
34
+ /** Locale */
35
+ locale: Intl.LocalesArgument;
32
36
  /** Estimated available amount, in USD (defaults to unlimited) */
33
37
  usdAvailableAmount: number | null;
34
38
  /** Maximum amount, in USD (defaults to unlimited) */
@@ -38,8 +42,11 @@ export interface AmountInputState {
38
42
  }
39
43
  /** Derived state includes additional fields that are pure functions of base state */
40
44
  export interface AmountInputDerivedState extends AmountInputState {
45
+ inputDecimals: number;
41
46
  inputError: AmountInputError | null;
47
+ inputPrefix: string;
42
48
  isValid: boolean;
49
+ placeholder: string;
43
50
  }
44
51
  export type AmountInputAction = {
45
52
  /** Switches between fiat and crypto input mode */
@@ -83,6 +90,6 @@ export type AmountInputError = {
83
90
  * Return half the balance and round up to nearest 10, 100, 1000 etc
84
91
  */
85
92
  export declare function calcInitialFiatAmount(balance: number): number;
86
- export declare function initializeState({ checkoutConfig, maxUsd, minUsd, paymentMethod, sourceHolding, unitPrice: realUnitPrice, defaultAmount, fiatCurrency, quickOptions, }: AmountInputInitOptions): AmountInputState;
93
+ export declare function initializeState({ checkoutConfig, defaultAmount, fiatCurrency, locale, maxUsd, minUsd, paymentMethod, quickOptions, sourceHolding, unitPrice: realUnitPrice, }: AmountInputInitOptions): AmountInputState;
87
94
  export declare function reduceState(state: AmountInputState, action: AmountInputAction): AmountInputState;
88
95
  export declare function getDerivedState(state: AmountInputState): AmountInputDerivedState;
@@ -1,9 +1,12 @@
1
+ import { type RefObject } from 'react';
1
2
  import type { FunInputChangeEvent } from '~/components/FunInput/FunInput';
2
3
  import { type AmountInputDerivedState, type AmountInputInitOptions } from './state';
3
4
  import { type InputAmountSuggestion } from './utils';
4
5
  interface UseAmountInputResult extends AmountInputDerivedState {
6
+ fontSize: number;
7
+ inputWidth: number | undefined;
5
8
  onChange(event: FunInputChangeEvent): void;
6
- placeholder: string;
9
+ ref: RefObject<HTMLInputElement>;
7
10
  setFiatAmount(usdAmount: number): AmountInputDerivedState;
8
11
  /** Possible user action to recover from the current error */
9
12
  suggestion: InputAmountSuggestion | undefined;
@@ -18,3 +18,30 @@ export interface InputAmountSuggestion {
18
18
  */
19
19
  export declare const getInputAmountSuggestion: (error: AmountInputError | null) => InputAmountSuggestion | undefined;
20
20
  export declare const getInputErrorNotification: (error: AmountInputError | null) => ErrorNotification | undefined;
21
+ export type NumberSeparators = {
22
+ decimalSeparator: string;
23
+ groupSeparator: RegExp;
24
+ };
25
+ export declare function getNumberSeparators(locale: Intl.LocalesArgument): NumberSeparators;
26
+ export declare function parseNumberInputValue(inputValue: string, separators: NumberSeparators): {
27
+ amount: number | undefined;
28
+ amountString: string;
29
+ amountStringNormalized: string;
30
+ decimalPart: string | null;
31
+ integerPart: string;
32
+ };
33
+ export declare function getCurrencyFormattingOptions(fiatCurrency: string, locale: Intl.LocalesArgument): {
34
+ currencySymbol: string;
35
+ currencySymbolWithSpacing: string;
36
+ decimals: number;
37
+ };
38
+ export declare function formatAssetAmountWithLocale(value: number, options: {
39
+ locale: Intl.LocalesArgument;
40
+ }): string;
41
+ export declare function formatCurrencyAmountWithLocale(value: number, options: {
42
+ fiatCurrency: string;
43
+ locale: Intl.LocalesArgument;
44
+ }): string;
45
+ export declare function replaceStringRange(original: string, replacement: string, start: number, end: number): string;
46
+ export declare function reformatDecimalPart(decimalPart: string, decimals: number): string;
47
+ export declare function reformatIntegerPart(integerPart: string, locale: Intl.LocalesArgument, preserveLeadingZeroes: boolean): string;
@@ -1,4 +1,4 @@
1
- import type { MeldQuote, MeldServiceProvider } from '@funkit/api-base';
1
+ import { type MeldQuote, MeldServiceProvider } from '@funkit/api-base';
2
2
  import React from 'react';
3
3
  import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
4
4
  import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
@@ -21,7 +21,7 @@ export declare enum FunCheckoutStartingStep {
21
21
  CONFIRMATION = "confirmation",
22
22
  SELECT_ASSET = "select_asset"
23
23
  }
24
- export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'generateActionsParams' | 'customRecipient' | 'modalTitle' | 'iconSrc' | 'modalTitleMeta' | 'externalCheckoutUserId'> {
24
+ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'generateActionsParams' | 'customRecipient' | 'modalTitle' | 'iconSrc' | 'modalTitleMeta'> {
25
25
  /** List of contract action params **/
26
26
  generateActionsParams?: (targetAssetAmount: number, config?: {
27
27
  targetAsset: Address;
@@ -40,8 +40,6 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
40
40
  iconSrc?: null | string;
41
41
  /** Title of the item being checked out. e.g. Staked Ether, XYZ Option, Solar Bond ABC **/
42
42
  checkoutItemTitle: string;
43
- /** @deprecated use targetAssetAmount **/
44
- checkoutItemAmount?: number;
45
43
  /** amount of source token. it is not baseUnit **/
46
44
  withdrawalSourceTokenBalance?: () => number;
47
45
  /** Whether checkout should be started in Defi mode, which has various flow implications (most importantly targetAssetAmount must be set and is not editable throughout the checkout) */
@@ -62,8 +60,6 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
62
60
  /** *****************************
63
61
  * Miscellaneous configurations *
64
62
  ********************************/
65
- /** User identification within customer's app for logging and customer dashboard purposes (future). **/
66
- externalCheckoutUserId?: string;
67
63
  /** a list of candidate assets to be chosen dynamically */
68
64
  dynamicTargetAssetCandidates?: DynamicTargetAssetCandidate[];
69
65
  /** minimal toAmount needed to proceed checkout. Checked after quote */
@@ -74,7 +70,7 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
74
70
  }
75
71
  export interface FunkitWithdrawalConfig {
76
72
  /** Title to show in the checkout modal. Defaults to "Checkout" **/
77
- modalTitle?: string;
73
+ modalTitle: string;
78
74
  /** Additional information to show in the title of the checkout modal. Blank by default **/
79
75
  modalTitleMeta?: string;
80
76
  /** Icon to show in the checkout modal (50px x 50px). If not specified, no icon will be shown. **/
@@ -84,8 +80,6 @@ export interface FunkitWithdrawalConfig {
84
80
  sourceChainId: string;
85
81
  /** source token id to withdraw **/
86
82
  sourceTokenAddress: Address;
87
- /** whether to show connected as preferred withdrawal destination*/
88
- showConnectedWalletAsPreferredRecipient?: boolean;
89
83
  /** Wallet instance used to execute the quote */
90
84
  wallet: WithdrawalClient;
91
85
  }
@@ -47,10 +47,6 @@ export interface FunkitUiCustomizationsConfig {
47
47
  /** Whether to allow entering an amount of tokens, rather than only USD - defaults to true */
48
48
  allowTokenAmountInput?: boolean;
49
49
  };
50
- paymentMethods?: {
51
- /** Whether paying by card is a payment method the users can use - defaults to true */
52
- isCardEnabled?: boolean;
53
- };
54
50
  callToActionsUppercase?: boolean;
55
51
  }
56
52
  export declare const DEFAULT_TEXT_CUSTOMIZATIONS: FunkitTextCustomizationsConfig;
@@ -71,8 +67,6 @@ export type FunkitConfig = {
71
67
  apiKey: string;
72
68
  /** App name **/
73
69
  appName: string;
74
- /** Whether app's background is scrollable when a widget is active **/
75
- allowBackgroundScroll?: boolean;
76
70
  /** Text customizations across all widgets **/
77
71
  textCustomizations?: Partial<FunkitTextCustomizationsConfig>;
78
72
  /** UI customizations across all widgets **/
@@ -81,7 +75,6 @@ export type FunkitConfig = {
81
75
  loginConfig: Partial<FunkitLoginOptionsConfig>;
82
76
  };
83
77
  interface FinalFunkitConfigInternal extends FunkitConfig {
84
- allowBackgroundScroll: boolean;
85
78
  textCustomizations: FunkitTextCustomizationsConfig;
86
79
  loginConfig: FunkitLoginOptionsConfig;
87
80
  }
@@ -222,6 +222,9 @@ export declare const useActiveTheme: () => {
222
222
  notification: string;
223
223
  qrCode: string;
224
224
  buttonFocusedShadow: string;
225
+ buttonHoverShadow: string;
226
+ buttonDisabledShadow: string;
227
+ selectedDropdownItem: string;
225
228
  };
226
229
  spacing: {
227
230
  modalBaseHorizontalPadding: string;
@@ -439,6 +442,9 @@ export declare const useActiveTheme: () => {
439
442
  notification: string;
440
443
  qrCode: string;
441
444
  buttonFocusedShadow: string;
445
+ buttonHoverShadow: string;
446
+ buttonDisabledShadow: string;
447
+ selectedDropdownItem: string;
442
448
  };
443
449
  spacing: {
444
450
  modalBaseHorizontalPadding: string;
@@ -654,6 +660,9 @@ export declare const useActiveTheme: () => {
654
660
  notification: string;
655
661
  qrCode: string;
656
662
  buttonFocusedShadow: string;
663
+ buttonHoverShadow: string;
664
+ buttonDisabledShadow: string;
665
+ selectedDropdownItem: string;
657
666
  };
658
667
  spacing: {
659
668
  modalBaseHorizontalPadding: string;
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-Z3KNAO7N.js";
4
+ } from "../chunk-UOY5XFCR.js";
5
5
  import "../chunk-7HKC2KCK.js";
6
6
  export {
7
7
  darkTheme
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-IR3HFYKM.js";
4
+ } from "../chunk-AYGZMDTC.js";
5
5
  import "../chunk-7HKC2KCK.js";
6
6
  export {
7
7
  lightTheme
@@ -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,127 +1,127 @@
1
1
  "use client";
2
- import {
3
- xdefiWallet
4
- } from "./chunk-BOU4WKRZ.js";
5
2
  import {
6
3
  zealWallet
7
4
  } from "./chunk-RNBEDQHF.js";
8
5
  import {
9
- zerionWallet
10
- } from "./chunk-Q3H3TRBS.js";
11
- import {
12
- safepalWallet
13
- } from "./chunk-EC6CHBSZ.js";
14
- import {
15
- tahoWallet
16
- } from "./chunk-ZZZRUXZE.js";
6
+ walletConnectWallet
7
+ } from "./chunk-NP5QGWNL.js";
17
8
  import {
18
- talismanWallet
19
- } from "./chunk-DRO6WYMM.js";
9
+ xdefiWallet
10
+ } from "./chunk-BOU4WKRZ.js";
20
11
  import {
21
- tokenPocketWallet
22
- } from "./chunk-J3LI3FYZ.js";
12
+ roninWallet
13
+ } from "./chunk-NWIQNBJU.js";
23
14
  import {
24
15
  tokenaryWallet
25
16
  } from "./chunk-D6AOOO5F.js";
26
17
  import {
27
- trustWallet
28
- } from "./chunk-RKPCWHXL.js";
18
+ tahoWallet
19
+ } from "./chunk-ZZZRUXZE.js";
20
+ import {
21
+ tokenPocketWallet
22
+ } from "./chunk-2L43XSW3.js";
29
23
  import {
30
24
  uniswapWallet
31
25
  } from "./chunk-LH7BMNFZ.js";
32
26
  import {
33
- walletConnectWallet
34
- } from "./chunk-NP5QGWNL.js";
27
+ trustWallet
28
+ } from "./chunk-VYBAYMP3.js";
35
29
  import {
36
- phantomWallet
37
- } from "./chunk-362NXNTM.js";
30
+ talismanWallet
31
+ } from "./chunk-DRO6WYMM.js";
32
+ import {
33
+ zerionWallet
34
+ } from "./chunk-SULRQO27.js";
38
35
  import {
39
36
  rabbyWallet
40
37
  } from "./chunk-BBOM42DL.js";
41
38
  import {
42
39
  rainbowWallet
43
- } from "./chunk-3CICVJUN.js";
40
+ } from "./chunk-2KUBG3S6.js";
44
41
  import {
45
- roninWallet
46
- } from "./chunk-QLVVUKYB.js";
42
+ oneInchWallet
43
+ } from "./chunk-OESTDX6I.js";
47
44
  import {
48
45
  ramperWallet
49
46
  } from "./chunk-BYXPFMI7.js";
50
47
  import {
51
- safeWallet
52
- } from "./chunk-BQQQL6UD.js";
48
+ safepalWallet
49
+ } from "./chunk-NT2HYJKW.js";
53
50
  import {
54
51
  safeheronWallet
55
52
  } from "./chunk-RZIO5TFF.js";
53
+ import {
54
+ safeWallet
55
+ } from "./chunk-BQQQL6UD.js";
56
56
  import {
57
57
  subWallet
58
- } from "./chunk-ZSI5N4VV.js";
58
+ } from "./chunk-JWFF4AAL.js";
59
59
  import {
60
- ledgerWallet
61
- } from "./chunk-BRBKM4PW.js";
60
+ mewWallet
61
+ } from "./chunk-OL5ZO7E4.js";
62
+ import {
63
+ injectedWallet
64
+ } from "./chunk-XWUJE7MW.js";
62
65
  import {
63
66
  metaMaskWallet
64
- } from "./chunk-UYGJO62F.js";
67
+ } from "./chunk-2HYNUNAS.js";
68
+ import {
69
+ omniWallet
70
+ } from "./chunk-7CUY5G6R.js";
65
71
  import {
66
72
  oktoWallet
67
73
  } from "./chunk-ADIXAKUL.js";
68
- import {
69
- mewWallet
70
- } from "./chunk-OL5ZO7E4.js";
71
74
  import {
72
75
  okxWallet
73
- } from "./chunk-AFXHGWBH.js";
74
- import {
75
- omniWallet
76
- } from "./chunk-7CUY5G6R.js";
76
+ } from "./chunk-TDIEHTMB.js";
77
77
  import {
78
- oneInchWallet
79
- } from "./chunk-OESTDX6I.js";
78
+ phantomWallet
79
+ } from "./chunk-362NXNTM.js";
80
80
  import {
81
81
  oneKeyWallet
82
82
  } from "./chunk-SHBUZ7U7.js";
83
- import {
84
- foxWallet
85
- } from "./chunk-CNPKISHN.js";
86
- import {
87
- frontierWallet
88
- } from "./chunk-VWCLFMWJ.js";
89
83
  import {
90
84
  frameWallet
91
85
  } from "./chunk-IFON7E6U.js";
86
+ import {
87
+ foxWallet
88
+ } from "./chunk-7QONTUXT.js";
92
89
  import {
93
90
  gateWallet
94
- } from "./chunk-CJGUM55H.js";
91
+ } from "./chunk-FKJJQNKX.js";
92
+ import {
93
+ frontierWallet
94
+ } from "./chunk-TCAGNB4B.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
98
98
  import {
99
- injectedWallet
100
- } from "./chunk-XWUJE7MW.js";
99
+ ledgerWallet
100
+ } from "./chunk-BRBKM4PW.js";
101
101
  import {
102
102
  kresusWallet
103
103
  } from "./chunk-MJXPRJZT.js";
104
- import {
105
- clvWallet
106
- } from "./chunk-2GJQ4XZQ.js";
107
104
  import {
108
105
  bybitWallet
109
- } from "./chunk-LNEC5RNX.js";
106
+ } from "./chunk-2STUC6QL.js";
107
+ import {
108
+ clvWallet
109
+ } from "./chunk-M3NZ6R2E.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
+ desigWallet
118
+ } from "./chunk-OPAZMNA7.js";
116
119
  import {
117
120
  dawnWallet
118
121
  } from "./chunk-HWPKCIBE.js";
119
122
  import {
120
123
  coreWallet
121
- } from "./chunk-JCHN6A47.js";
122
- import {
123
- desigWallet
124
- } from "./chunk-OPAZMNA7.js";
124
+ } from "./chunk-VR4TBQ6S.js";
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-OLOIXTYS.js";
@@ -130,24 +130,24 @@ import {
130
130
  } from "./chunk-WSQ2YJO2.js";
131
131
  import {
132
132
  bifrostWallet
133
- } from "./chunk-UIASLGLV.js";
133
+ } from "./chunk-A5N6B5UW.js";
134
134
  import {
135
135
  bitgetWallet
136
- } from "./chunk-5W7VDOCL.js";
136
+ } from "./chunk-TDAVGY5F.js";
137
137
  import {
138
138
  bitskiWallet
139
139
  } from "./chunk-HS3C7OQV.js";
140
+ import {
141
+ bloomWallet
142
+ } from "./chunk-S27IADFU.js";
140
143
  import {
141
144
  bitverseWallet
142
145
  } from "./chunk-3HZRRP4Y.js";
146
+ import "./chunk-23WIEY36.js";
143
147
  import {
144
148
  braveWallet
145
149
  } from "./chunk-BPZ2XJO2.js";
146
150
  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-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
  };