@funkit/connect 6.14.3 → 6.14.5

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 (56) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/components/Dialog/Dialog.d.ts +2 -1
  3. package/dist/components/Dropdown/BaseDropdown.d.ts +2 -1
  4. package/dist/components/Dropdown/ChainDropdown.d.ts +2 -1
  5. package/dist/components/Dropdown/TokenDropdown.d.ts +5 -1
  6. package/dist/components/FunAlert/FunAlert.d.ts +2 -1
  7. package/dist/components/FunAsset/FunAssetItem.d.ts +2 -1
  8. package/dist/components/FunButton/FunButton.d.ts +2 -1
  9. package/dist/components/FunButton/FunIconButton.d.ts +2 -1
  10. package/dist/components/FunInput/FunInput.d.ts +1 -0
  11. package/dist/components/FunNotification/FunNotification.d.ts +2 -1
  12. package/dist/components/FunPaymentMethodItem/FunPaymentMethodItem.d.ts +4 -2
  13. package/dist/components/FunPayments/FunPaymentMethods.d.ts +6 -3
  14. package/dist/components/MeldQuoteItem/MeldQuoteItem.d.ts +2 -1
  15. package/dist/components/SourceMeldQuoteItem/SourceMeldQuoteItem.d.ts +2 -1
  16. package/dist/components/SourcePaymentMethodItem/SourcePaymentMethodItem.d.ts +2 -1
  17. package/dist/components/Text/Text.d.ts +1 -0
  18. package/dist/consts/customers.d.ts +1 -1
  19. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
  20. package/dist/hooks/useIsUsUser.d.ts +1 -0
  21. package/dist/index.d.ts +0 -1
  22. package/dist/index.js +2146 -1899
  23. package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +2 -5
  24. package/dist/modals/CheckoutModal/InputAmount/state.d.ts +5 -1
  25. package/dist/modals/CheckoutModal/InputAmount/useAmountInput.d.ts +1 -2
  26. package/dist/modals/CheckoutModal/InputAmount/useMeld.d.ts +38 -0
  27. package/dist/modals/CheckoutModal/TransferToken/CheckoutNotifications.d.ts +1 -9
  28. package/dist/modals/CheckoutModal/TransferToken/types.d.ts +15 -0
  29. package/dist/modals/CheckoutModal/stepTransition.d.ts +1 -1
  30. package/dist/providers/FunkitCheckoutContext.d.ts +10 -0
  31. package/dist/utils/checkout.d.ts +1 -1
  32. package/dist/utils/flags/config.d.ts +5 -5
  33. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  37. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  38. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  39. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  40. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  41. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/index.js +61 -61
  43. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  44. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  45. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  46. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  47. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  48. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  49. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  50. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  51. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  52. package/package.json +5 -5
  53. package/dist/hooks/useGooeyFilter.d.ts +0 -21
  54. package/dist/hooks/useIsFunkitCheckoutActivated.d.ts +0 -7
  55. package/dist/hooks/useMountEffect.d.ts +0 -8
  56. package/dist/hooks/usePathMorph.d.ts +0 -16
@@ -1,6 +1,6 @@
1
- import { type ExchangeRates } from '@funkit/api-base';
1
+ import type { ExchangeRates } from '@funkit/api-base';
2
2
  import React from 'react';
3
- import { type FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
3
+ import type { FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
4
4
  import type { AssetHoldingsItem } from '~/utils/assets';
5
5
  import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
6
6
  import { FunCheckoutStep, type ModalStepComponentProps } from '../stepTransition';
@@ -15,8 +15,5 @@ interface InputAmountLoadedProps extends ModalStepComponentProps<FunCheckoutStep
15
15
  defaultFiatCurrency?: string;
16
16
  textCustomizations: FunkitTextCustomizationsConfig['confirmationScreen'];
17
17
  }
18
- export declare function openMeldPopup(linkGetter: () => Promise<{
19
- widgetUrl: string;
20
- }>): Promise<void>;
21
18
  export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, onClose, sourceHolding, unitPrice, currencyExchangeRates, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
22
19
  export {};
@@ -47,6 +47,10 @@ export interface AmountInputState {
47
47
  fiatCurrencyExchangeRate: number | undefined;
48
48
  /** Whether meld is enabled */
49
49
  meldEnabled: boolean;
50
+ /** Whether the input amount is in vault deposit mode
51
+ * https://linear.app/funxyz/issue/CUS-142/product-enable-customers-to-pass-in-an-exchange-rate-for-vault
52
+ **/
53
+ isVaultDeposit: boolean;
50
54
  }
51
55
  /** Derived state includes additional fields that are pure functions of base state */
52
56
  export interface AmountInputDerivedState extends AmountInputState {
@@ -100,4 +104,4 @@ export type AmountInputError = {
100
104
  export declare function calcInitialFiatAmount(balance: number): number;
101
105
  export declare function initializeState({ checkoutConfig, defaultAmount, fiatCurrency, locale, maxUsd, minUsd, paymentMethod, quickOptions, sourceHolding, unitPrice: realUnitPrice, fiatCurrencyExchangeRate, meldEnabled, }: AmountInputInitOptions): AmountInputState;
102
106
  export declare function reduceState(state: AmountInputState, action: AmountInputAction): AmountInputState;
103
- export declare function getDerivedState(state: AmountInputState): AmountInputDerivedState;
107
+ export declare function getDerivedState(state: AmountInputState, targetAssetTicker: string): AmountInputDerivedState;
@@ -2,7 +2,7 @@ import { type RefObject } from 'react';
2
2
  import type { FunInputChangeEvent } from '~/components/FunInput/FunInput';
3
3
  import { type AmountInputDerivedState, type AmountInputInitOptions } from './state';
4
4
  import { type InputAmountSuggestion } from './utils';
5
- interface UseAmountInputResult extends AmountInputDerivedState {
5
+ export interface UseAmountInputResult extends AmountInputDerivedState {
6
6
  fontSize: number;
7
7
  inputWidth: number | undefined;
8
8
  onChange(event: FunInputChangeEvent): void;
@@ -13,4 +13,3 @@ interface UseAmountInputResult extends AmountInputDerivedState {
13
13
  toggleInputInFiat: () => void;
14
14
  }
15
15
  export declare function useAmountInput(options: AmountInputInitOptions): UseAmountInputResult;
16
- export {};
@@ -0,0 +1,38 @@
1
+ import { type MeldQuote, MeldServiceProvider } from '@funkit/api-base';
2
+ import React from 'react';
3
+ import type { ErrorNotification } from '~/components/FunNotification/FunNotification';
4
+ import { FunCheckoutStep, type NextPayload } from '../stepTransition';
5
+ export declare function useMeldUI({ meldEnabled, manuallySelectedQuote, fiatAmount, fiatCurrency, onNext, onClose, }: {
6
+ meldEnabled: boolean;
7
+ manuallySelectedQuote: MeldQuote | undefined;
8
+ fiatAmount: number | undefined;
9
+ fiatCurrency: string | undefined;
10
+ onNext: (data: NextPayload<FunCheckoutStep.INPUT_AMOUNT>) => void;
11
+ onClose: () => void;
12
+ }): {
13
+ getMeldFooter: () => React.JSX.Element;
14
+ handleMeldContinue: () => Promise<void>;
15
+ isMeldContinueDisabled: boolean | undefined;
16
+ isMeldLinkPending: boolean;
17
+ getMeldError: () => ErrorNotification | undefined;
18
+ };
19
+ export declare function useMeld(meldEnabled: boolean, manuallySelectedQuote: MeldQuote | undefined, usdAmount: number | undefined, fiatCurrency: string | undefined): {
20
+ meldQuotesQuery: import("@tanstack/react-query").UseQueryResult<MeldQuote[]> & {
21
+ isOutdated: boolean;
22
+ };
23
+ mutateAsync: import("@tanstack/react-query").UseMutateAsyncFunction<import("@funkit/api-base").MeldCreateCryptoWidgetResponse, Error, MeldServiceProvider, unknown>;
24
+ isMeldLinkPending: boolean;
25
+ meldLimitError: {
26
+ issue: string;
27
+ suggestion: string;
28
+ } | undefined;
29
+ bestRateQuote: MeldQuote | undefined;
30
+ selectedQuote: MeldQuote | undefined;
31
+ isSelectedQuoteUnavailable: boolean | undefined;
32
+ isMeldMoonpaySelected: boolean;
33
+ isMeldContinueDisabled: boolean | undefined;
34
+ getMeldError: () => ErrorNotification | undefined;
35
+ };
36
+ export declare function openMeldPopup(linkGetter: () => Promise<{
37
+ widgetUrl: string;
38
+ }>): Promise<void>;
@@ -1,11 +1,3 @@
1
1
  import React from 'react';
2
- import type { Address } from 'viem';
3
- type NotificationVariant = 'withdrawal' | 'token_transfer';
4
- interface CheckoutNotificationsProps {
5
- onHelp: (depositAddress: Address) => void;
6
- /** To control notifications visibility on specific pages, without changing internal dismissal state */
7
- isVisible: boolean;
8
- variant: NotificationVariant | undefined;
9
- }
2
+ import type { CheckoutNotificationsProps } from './types';
10
3
  export declare const CheckoutNotifications: ({ onHelp, isVisible, variant, }: CheckoutNotificationsProps) => React.JSX.Element | null;
11
- export {};
@@ -0,0 +1,15 @@
1
+ import type { CheckoutHistoryItem, DirectExecution } from '@funkit/api-base';
2
+ import type { Address } from 'viem';
3
+ export type NotificationItem = (DirectExecution & {
4
+ isDirectExecution: true;
5
+ }) | (CheckoutHistoryItem & {
6
+ isDirectExecution: false;
7
+ });
8
+ type NotificationVariant = 'withdrawal' | 'token_transfer';
9
+ export interface CheckoutNotificationsProps {
10
+ onHelp: (depositAddress: Address) => void;
11
+ /** To control notifications visibility on specific pages, without changing internal dismissal state */
12
+ isVisible: boolean;
13
+ variant: NotificationVariant | undefined;
14
+ }
15
+ export {};
@@ -105,7 +105,7 @@ type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
105
105
  step: T;
106
106
  };
107
107
  }[S];
108
- type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
108
+ export type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
109
109
  [FunCheckoutStep.CHECKOUT_HELP]: null;
110
110
  [FunCheckoutStep.CHECKOUT_COMPLETE]: CheckoutCompleteNext;
111
111
  [FunCheckoutStep.CONFIRMATION]: ConfirmationStepNext;
@@ -17,6 +17,14 @@ export interface DynamicTargetAssetCandidate extends TokenInfo {
17
17
  isDefault?: boolean;
18
18
  badgeText?: string;
19
19
  targetAssetMinAmount?: number;
20
+ /**
21
+ * Exchange rate of the target asset in terms of the staking token.
22
+ * Represents how many staking tokens one unit of the target asset can be exchanged for.
23
+ *
24
+ * Example: If `targetAsset`/`stakingToken` is USDT/hbUSDT and the rate is 1.01,
25
+ * 1 USDT can be exchanged for 1.01 hbUSDT.
26
+ */
27
+ stakingTokenRate?: number;
20
28
  }
21
29
  export declare enum FunCheckoutStartingStep {
22
30
  SOURCE_CHANGE = "source_change",
@@ -66,6 +74,8 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
66
74
  /** For Checkout with Custom Action, QRCode needs special action type
67
75
  * to specify the onchain action to execute after deposit */
68
76
  qrcodeActionType?: string;
77
+ /** set this if you want enable vault like deposit*/
78
+ stakingToken?: DynamicTargetAssetCandidate;
69
79
  }
70
80
  export interface WithdrawalConfigBase {
71
81
  /** Title to show in the checkout modal. Defaults to "Checkout" **/
@@ -55,7 +55,6 @@ 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;
59
58
  fee?: {
60
59
  token?: string;
61
60
  amount?: number;
@@ -63,6 +62,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
63
62
  recipient: Address;
64
63
  } | undefined;
65
64
  skipDBAction?: boolean | undefined;
65
+ logger?: import("@funkit/api-base").Logger | undefined;
66
66
  };
67
67
  export type TokenInfo = {
68
68
  symbol: string;
@@ -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", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
20
+ readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4"];
21
21
  }];
22
22
  readonly value: "";
23
23
  }];
@@ -45,7 +45,7 @@ export declare const flagConfig: {
45
45
  readonly if_any: [{
46
46
  readonly key: "apiKey";
47
47
  readonly type: "isAnyOf";
48
- readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
48
+ readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2"];
49
49
  }];
50
50
  readonly value: true;
51
51
  }];
@@ -123,7 +123,7 @@ export declare const flagConfig: {
123
123
  readonly if_any: [{
124
124
  readonly key: "apiKey";
125
125
  readonly type: "isAnyOf";
126
- readonly values: ["vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
126
+ readonly values: ["vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ"];
127
127
  }];
128
128
  readonly value: string;
129
129
  }];
@@ -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", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
190
+ readonly values: ["OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4"];
191
191
  }];
192
192
  readonly value: false;
193
193
  }];
@@ -210,7 +210,7 @@ export declare const flagConfig: {
210
210
  readonly if_any: [{
211
211
  readonly key: "apiKey";
212
212
  readonly type: "isAnyOf";
213
- readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2", "KEd0ZxJc4n1QBER8yBcKH8wWwfgjjdjO42riuq86"];
213
+ readonly values: ["HKHvPSPDezaxsTohFgDuG4WpKW6hB4SFYyztm9vc", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2"];
214
214
  }];
215
215
  readonly value: true;
216
216
  }, {
@@ -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
  };
@@ -2,33 +2,33 @@
2
2
  import {
3
3
  xdefiWallet
4
4
  } from "./chunk-BOU4WKRZ.js";
5
- import {
6
- zealWallet
7
- } from "./chunk-RNBEDQHF.js";
8
5
  import {
9
6
  zerionWallet
10
- } from "./chunk-Q3H3TRBS.js";
7
+ } from "./chunk-SULRQO27.js";
11
8
  import {
12
- roninWallet
13
- } from "./chunk-QLVVUKYB.js";
9
+ zealWallet
10
+ } from "./chunk-RNBEDQHF.js";
14
11
  import {
15
12
  tahoWallet
16
13
  } 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-J3LI3FYZ.js";
22
+ } from "./chunk-2L43XSW3.js";
23
+ import {
24
+ trustWallet
25
+ } from "./chunk-VYBAYMP3.js";
23
26
  import {
24
27
  tokenaryWallet
25
28
  } from "./chunk-D6AOOO5F.js";
26
29
  import {
27
30
  uniswapWallet
28
31
  } from "./chunk-LH7BMNFZ.js";
29
- import {
30
- trustWallet
31
- } from "./chunk-RKPCWHXL.js";
32
32
  import {
33
33
  walletConnectWallet
34
34
  } from "./chunk-NP5QGWNL.js";
@@ -37,117 +37,117 @@ import {
37
37
  } from "./chunk-SHBUZ7U7.js";
38
38
  import {
39
39
  rainbowWallet
40
- } from "./chunk-3CICVJUN.js";
41
- import {
42
- rabbyWallet
43
- } from "./chunk-BBOM42DL.js";
40
+ } from "./chunk-2KUBG3S6.js";
44
41
  import {
45
42
  safeWallet
46
43
  } from "./chunk-BQQQL6UD.js";
44
+ import {
45
+ ramperWallet
46
+ } from "./chunk-BYXPFMI7.js";
47
+ import {
48
+ metaMaskWallet
49
+ } from "./chunk-2HYNUNAS.js";
50
+ import {
51
+ kresusWallet
52
+ } from "./chunk-MJXPRJZT.js";
47
53
  import {
48
54
  safeheronWallet
49
55
  } from "./chunk-RZIO5TFF.js";
50
56
  import {
51
57
  safepalWallet
52
- } from "./chunk-EC6CHBSZ.js";
53
- import {
54
- ramperWallet
55
- } from "./chunk-BYXPFMI7.js";
56
- import {
57
- subWallet
58
- } from "./chunk-ZSI5N4VV.js";
58
+ } from "./chunk-NT2HYJKW.js";
59
59
  import {
60
- mewWallet
61
- } from "./chunk-OL5ZO7E4.js";
60
+ ledgerWallet
61
+ } from "./chunk-BRBKM4PW.js";
62
62
  import {
63
63
  oktoWallet
64
64
  } from "./chunk-ADIXAKUL.js";
65
65
  import {
66
- kresusWallet
67
- } from "./chunk-MJXPRJZT.js";
66
+ omniWallet
67
+ } from "./chunk-7CUY5G6R.js";
68
68
  import {
69
- metaMaskWallet
70
- } from "./chunk-UYGJO62F.js";
69
+ phantomWallet
70
+ } from "./chunk-362NXNTM.js";
71
71
  import {
72
72
  okxWallet
73
- } from "./chunk-AFXHGWBH.js";
74
- import {
75
- omniWallet
76
- } from "./chunk-7CUY5G6R.js";
73
+ } from "./chunk-TDIEHTMB.js";
77
74
  import {
78
75
  oneInchWallet
79
76
  } from "./chunk-OESTDX6I.js";
80
77
  import {
81
- phantomWallet
82
- } from "./chunk-362NXNTM.js";
78
+ roninWallet
79
+ } from "./chunk-NWIQNBJU.js";
83
80
  import {
84
- enkryptWallet
85
- } from "./chunk-OLOIXTYS.js";
81
+ rabbyWallet
82
+ } from "./chunk-BBOM42DL.js";
86
83
  import {
87
- frameWallet
88
- } from "./chunk-IFON7E6U.js";
84
+ foxWallet
85
+ } from "./chunk-7QONTUXT.js";
89
86
  import {
90
87
  frontierWallet
91
- } from "./chunk-VWCLFMWJ.js";
88
+ } from "./chunk-TCAGNB4B.js";
89
+ import {
90
+ gateWallet
91
+ } from "./chunk-FKJJQNKX.js";
92
92
  import {
93
93
  imTokenWallet
94
94
  } from "./chunk-COZ7MIQS.js";
95
95
  import {
96
- gateWallet
97
- } from "./chunk-CJGUM55H.js";
96
+ enkryptWallet
97
+ } from "./chunk-OLOIXTYS.js";
98
98
  import {
99
99
  injectedWallet
100
100
  } from "./chunk-XWUJE7MW.js";
101
101
  import {
102
- ledgerWallet
103
- } from "./chunk-BRBKM4PW.js";
102
+ mewWallet
103
+ } from "./chunk-OL5ZO7E4.js";
104
104
  import {
105
- braveWallet
106
- } from "./chunk-BPZ2XJO2.js";
105
+ bybitWallet
106
+ } from "./chunk-2STUC6QL.js";
107
107
  import {
108
- coinbaseWallet
109
- } from "./chunk-H4IRCEZN.js";
108
+ clvWallet
109
+ } from "./chunk-M3NZ6R2E.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-KIDC67XJ.js";
112
+ } from "./chunk-OBOVHCEI.js";
113
+ import {
114
+ coinbaseWallet
115
+ } from "./chunk-H4IRCEZN.js";
113
116
  import {
114
117
  coreWallet
115
- } from "./chunk-JCHN6A47.js";
118
+ } from "./chunk-VR4TBQ6S.js";
116
119
  import {
117
120
  dawnWallet
118
121
  } from "./chunk-HWPKCIBE.js";
119
- import {
120
- bybitWallet
121
- } from "./chunk-LNEC5RNX.js";
122
122
  import {
123
123
  desigWallet
124
124
  } from "./chunk-OPAZMNA7.js";
125
125
  import {
126
- foxWallet
127
- } from "./chunk-CNPKISHN.js";
126
+ frameWallet
127
+ } from "./chunk-IFON7E6U.js";
128
128
  import {
129
129
  argentWallet
130
130
  } from "./chunk-WSQ2YJO2.js";
131
131
  import {
132
132
  bifrostWallet
133
- } from "./chunk-UIASLGLV.js";
133
+ } from "./chunk-A5N6B5UW.js";
134
+ import {
135
+ bitskiWallet
136
+ } from "./chunk-HS3C7OQV.js";
134
137
  import {
135
138
  bitgetWallet
136
- } from "./chunk-5W7VDOCL.js";
139
+ } from "./chunk-TDAVGY5F.js";
137
140
  import {
138
141
  bitverseWallet
139
142
  } from "./chunk-3HZRRP4Y.js";
140
- import {
141
- bitskiWallet
142
- } from "./chunk-HS3C7OQV.js";
143
143
  import {
144
144
  bloomWallet
145
145
  } from "./chunk-S27IADFU.js";
146
+ import "./chunk-23WIEY36.js";
146
147
  import {
147
- clvWallet
148
- } from "./chunk-2GJQ4XZQ.js";
148
+ braveWallet
149
+ } from "./chunk-BPZ2XJO2.js";
149
150
  import "./chunk-DNSG5Q7V.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
  };