@funkit/connect 5.0.4 → 5.0.6

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 (62) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/{chunk-DRTHDG4D.js → chunk-7QFRFB6R.js} +9 -0
  3. package/dist/{chunk-ZHSAPALJ.js → chunk-J2TPZOG7.js} +9 -0
  4. package/dist/components/Box/Box.d.ts +21 -21
  5. package/dist/components/CopyAddress/CopyIconButton.d.ts +1 -0
  6. package/dist/components/Dropdown/BaseActiveDropdownItem.d.ts +3 -1
  7. package/dist/components/Dropdown/BaseDropdown.d.ts +4 -2
  8. package/dist/components/Dropdown/ChainDropdown.d.ts +15 -5
  9. package/dist/components/FunAssetAvatar/FunAssetAvatar.css.d.ts +0 -2
  10. package/dist/components/FunAssetAvatar/FunAssetAvatar.d.ts +1 -2
  11. package/dist/components/FunButton/FunIconButton.d.ts +19 -2
  12. package/dist/components/FunCheckoutBlocked/FunCheckoutBlocked.d.ts +1 -1
  13. package/dist/components/FunOptionBox/FunOptionBox.css.d.ts +1 -1
  14. package/dist/components/FunPaymentMethodItem/FunPaymentMethodItem.d.ts +6 -4
  15. package/dist/components/FunPayments/FunPaymentMethods.d.ts +1 -0
  16. package/dist/components/FunSkeletonLoader/FunSkeletonBlock.d.ts +2 -2
  17. package/dist/components/QRCode/QRCodeSkeletonLoader.d.ts +7 -0
  18. package/dist/components/SourcePaymentMethodItem/SourcePaymentMethodItem.d.ts +7 -0
  19. package/dist/consts/animations.d.ts +1 -0
  20. package/dist/css/sprinkles.css.d.ts +37 -21
  21. package/dist/domains/asset.d.ts +1 -1
  22. package/dist/domains/{checkoutState.d.ts → checkout.d.ts} +3 -0
  23. package/dist/domains/{checkoutFees.d.ts → fees.d.ts} +1 -1
  24. package/dist/domains/paymentMethods.d.ts +1 -1
  25. package/dist/domains/quote.d.ts +1 -1
  26. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
  27. package/dist/hooks/useIsBlacklisted.d.ts +6 -0
  28. package/dist/index.css +1495 -999
  29. package/dist/index.js +1050 -896
  30. package/dist/modals/CheckoutModal/CheckoutNotification.d.ts +1 -1
  31. package/dist/modals/CheckoutModal/ConfirmationStep/ConfirmationStep.d.ts +1 -1
  32. package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutConfirmation.d.ts +6 -0
  33. package/dist/modals/CheckoutModal/stepTransition.d.ts +4 -0
  34. package/dist/providers/FunkitConfigContext.d.ts +1 -0
  35. package/dist/providers/FunkitMoonpayProvider.d.ts +0 -2
  36. package/dist/providers/FunkitThemeProvider.d.ts +24 -0
  37. package/dist/providers/GeneralWalletProvider.d.ts +9 -10
  38. package/dist/themes/darkTheme.js +1 -1
  39. package/dist/themes/lightTheme.js +1 -1
  40. package/dist/utils/checkout.d.ts +1 -1
  41. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  42. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  43. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  44. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  45. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  46. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  47. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  48. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  49. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  50. package/dist/wallets/walletConnectors/index.js +68 -68
  51. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  52. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  53. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  54. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  55. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  56. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  57. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  58. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  59. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  60. package/package.json +4 -4
  61. package/dist/hooks/useIsCheckoutRisky.d.ts +0 -4
  62. /package/dist/components/{FunPaymentMethodItem/FunPaymentMethodItem.css.d.ts → SourcePaymentMethodItem/SourcePaymentMethodItem.css.d.ts} +0 -0
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { CheckoutHistoryItem } from '@funkit/api-base';
3
3
  import type { Address } from 'viem';
4
- import { type CheckoutStatus } from '~/domains/checkoutState';
4
+ import { type CheckoutStatus } from '~/domains/checkout';
5
5
  export type NotificationStatus = CheckoutStatus | 'delayed';
6
6
  interface CheckoutNotificationProps {
7
7
  checkout: CheckoutHistoryItem;
@@ -18,5 +18,5 @@ export type ConfirmationStepNext = {
18
18
  redirectBackToSourceChange?: boolean;
19
19
  };
20
20
  export declare const ConfirmationStepInfo: ModalStepInfo<FunCheckoutStep.CONFIRMATION>;
21
- export declare function ConfirmationStep({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.CONFIRMATION>): React.JSX.Element;
21
+ export declare function ConfirmationStep({ modalState, onNext, setModalState, }: ModalStepComponentProps<FunCheckoutStep.CONFIRMATION>): React.JSX.Element;
22
22
  export {};
@@ -2,6 +2,12 @@ import type { Address } from 'viem';
2
2
  import type { ErrorNotification } from '~/components/FunNotification/FunNotification';
3
3
  export interface CheckoutConfirmationError extends ErrorNotification {
4
4
  durationMs?: number;
5
+ code: ConfirmationErrorCode;
6
+ }
7
+ export declare enum ConfirmationErrorCode {
8
+ QUOTE_EXPIRED = "QUOTE_EXPIRED",
9
+ GENERIC_ERROR = "GENERIC_ERROR",
10
+ RISK_ERROR = "RISK_ERROR"
5
11
  }
6
12
  interface UseCheckoutConfirmationOptions {
7
13
  onError(error: CheckoutConfirmationError): void;
@@ -15,8 +15,12 @@ import { type SourceChangeNext, type SourceChangeState } from './SourceChange/So
15
15
  import { type TransferTokenNext, type TransferTokenState } from './TransferToken';
16
16
  export interface CheckoutModalCommonState {
17
17
  checkoutId: string;
18
+ /** Handles soft hiding of the dialog (without removing it from the DOM) */
18
19
  isSoftHidden: boolean;
20
+ /** Hides the close button in the Dialog Title element */
19
21
  isCloseButtonHidden?: boolean;
22
+ /** Whether checkout should not be allowed to continue due to security reasons*/
23
+ isBlocked?: boolean;
20
24
  targetChainId: string;
21
25
  }
22
26
  export interface ModalStepComponentProps<S extends FunCheckoutStep = FunCheckoutStep> {
@@ -8,6 +8,7 @@ export interface FunkitTextCustomizationsConfig {
8
8
  sourceMethodTitle: string;
9
9
  transferTokens: string;
10
10
  confirmationScreen: {
11
+ payAmountLabel: string;
11
12
  receiveAmountLabel: string;
12
13
  };
13
14
  }
@@ -1,5 +1,4 @@
1
1
  import React, { type ReactNode } from 'react';
2
- import type { FunButtonProps } from '../components/FunButton/FunButton';
3
2
  export declare function FunkitMoonpayProvider({ children, debug, }: {
4
3
  children: ReactNode;
5
4
  debug: boolean;
@@ -17,7 +16,6 @@ export interface UserIpInfoFromMoonpay {
17
16
  isLowLimitEnabled: boolean;
18
17
  state: string;
19
18
  }
20
- export declare const geoCheckInProgressProps: FunButtonProps;
21
19
  export declare function useFunkitUserIp(): {
22
20
  isLoadingGeoCheck: boolean;
23
21
  isUserGeoblocked: boolean;
@@ -87,6 +87,14 @@ export declare const useActiveTheme: () => {
87
87
  badgeBackgroundSuccess: string;
88
88
  badgeBorderSuccess: string;
89
89
  badgeTextSuccess: string;
90
+ inputAmountQuickOptionBaseBackground: string;
91
+ inputAmountQuickOptionHoverBackground: string;
92
+ inputAmountQuickOptionActiveBackground: string;
93
+ inputAmountQuickOptionDisabledBackground: string;
94
+ inputAmountQuickOptionBaseBorder: string;
95
+ inputAmountQuickOptionHoverBorder: string;
96
+ inputAmountQuickOptionActiveBorder: string;
97
+ inputAmountQuickOptionFocusedBorder: string;
90
98
  announceGradientFrom: string;
91
99
  announceGradientTo: string;
92
100
  };
@@ -234,6 +242,14 @@ export declare const useActiveTheme: () => {
234
242
  badgeBackgroundSuccess: string;
235
243
  badgeBorderSuccess: string;
236
244
  badgeTextSuccess: string;
245
+ inputAmountQuickOptionBaseBackground: string;
246
+ inputAmountQuickOptionHoverBackground: string;
247
+ inputAmountQuickOptionActiveBackground: string;
248
+ inputAmountQuickOptionDisabledBackground: string;
249
+ inputAmountQuickOptionBaseBorder: string;
250
+ inputAmountQuickOptionHoverBorder: string;
251
+ inputAmountQuickOptionActiveBorder: string;
252
+ inputAmountQuickOptionFocusedBorder: string;
237
253
  announceGradientFrom: string;
238
254
  announceGradientTo: string;
239
255
  };
@@ -379,6 +395,14 @@ export declare const useActiveTheme: () => {
379
395
  badgeBackgroundSuccess: string;
380
396
  badgeBorderSuccess: string;
381
397
  badgeTextSuccess: string;
398
+ inputAmountQuickOptionBaseBackground: string;
399
+ inputAmountQuickOptionHoverBackground: string;
400
+ inputAmountQuickOptionActiveBackground: string;
401
+ inputAmountQuickOptionDisabledBackground: string;
402
+ inputAmountQuickOptionBaseBorder: string;
403
+ inputAmountQuickOptionHoverBorder: string;
404
+ inputAmountQuickOptionActiveBorder: string;
405
+ inputAmountQuickOptionFocusedBorder: string;
382
406
  announceGradientFrom: string;
383
407
  announceGradientTo: string;
384
408
  };
@@ -15,7 +15,7 @@ export declare enum LoginType {
15
15
  Web3 = "web3",
16
16
  Guest = "guest"
17
17
  }
18
- interface GeneralWalletContextProps {
18
+ export interface GeneralWalletContextProps {
19
19
  walletAddress: Address | '';
20
20
  isUserLoggedIn: boolean;
21
21
  loginType: LoginType;
@@ -96,15 +96,15 @@ export declare const useFunkitDisconnect: () => {
96
96
  error: null;
97
97
  data: undefined;
98
98
  status: "idle";
99
- isPaused: boolean;
100
- context: unknown;
101
99
  isError: false;
102
100
  isPending: false;
103
101
  isSuccess: false;
104
102
  failureCount: number;
105
103
  failureReason: import("@wagmi/core").DisconnectErrorType | null;
104
+ isPaused: boolean;
106
105
  variables: undefined;
107
106
  isIdle: true;
107
+ context: unknown;
108
108
  submittedAt: number;
109
109
  connectors: readonly import("wagmi").Connector[];
110
110
  } | {
@@ -114,15 +114,15 @@ export declare const useFunkitDisconnect: () => {
114
114
  error: null;
115
115
  data: undefined;
116
116
  status: "pending";
117
- isPaused: boolean;
118
- context: unknown;
119
117
  isError: false;
120
118
  isPending: true;
121
119
  isSuccess: false;
122
120
  failureCount: number;
123
121
  failureReason: import("@wagmi/core").DisconnectErrorType | null;
122
+ isPaused: boolean;
124
123
  variables: import("wagmi/query").DisconnectVariables;
125
124
  isIdle: false;
125
+ context: unknown;
126
126
  submittedAt: number;
127
127
  connectors: readonly import("wagmi").Connector[];
128
128
  } | {
@@ -132,15 +132,15 @@ export declare const useFunkitDisconnect: () => {
132
132
  error: import("@wagmi/core").DisconnectErrorType;
133
133
  data: undefined;
134
134
  status: "error";
135
- isPaused: boolean;
136
- context: unknown;
137
135
  isError: true;
138
136
  isPending: false;
139
137
  isSuccess: false;
140
138
  failureCount: number;
141
139
  failureReason: import("@wagmi/core").DisconnectErrorType | null;
140
+ isPaused: boolean;
142
141
  variables: import("wagmi/query").DisconnectVariables;
143
142
  isIdle: false;
143
+ context: unknown;
144
144
  submittedAt: number;
145
145
  connectors: readonly import("wagmi").Connector[];
146
146
  } | {
@@ -150,15 +150,15 @@ export declare const useFunkitDisconnect: () => {
150
150
  error: null;
151
151
  data: void;
152
152
  status: "success";
153
- isPaused: boolean;
154
- context: unknown;
155
153
  isError: false;
156
154
  isPending: false;
157
155
  isSuccess: true;
158
156
  failureCount: number;
159
157
  failureReason: import("@wagmi/core").DisconnectErrorType | null;
158
+ isPaused: boolean;
160
159
  variables: import("wagmi/query").DisconnectVariables;
161
160
  isIdle: false;
161
+ context: unknown;
162
162
  submittedAt: number;
163
163
  connectors: readonly import("wagmi").Connector[];
164
164
  };
@@ -172,4 +172,3 @@ export declare const useFunkitSwitchChains: ({ onSettled, }: {
172
172
  switchChainAsync: (params: SwitchChainVariables<Config, number>) => Promise<void>;
173
173
  pendingChainId: number | null;
174
174
  };
175
- export {};
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  darkTheme
4
- } from "../chunk-ZHSAPALJ.js";
4
+ } from "../chunk-J2TPZOG7.js";
5
5
  import "../chunk-2T4ZDGAO.js";
6
6
  export {
7
7
  darkTheme
@@ -1,7 +1,7 @@
1
1
  "use client";
2
2
  import {
3
3
  lightTheme
4
- } from "../chunk-DRTHDG4D.js";
4
+ } from "../chunk-7QFRFB6R.js";
5
5
  import "../chunk-2T4ZDGAO.js";
6
6
  export {
7
7
  lightTheme
@@ -51,7 +51,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
51
51
  bypassInit: boolean;
52
52
  apiKey?: string;
53
53
  nonce?: bigint | undefined;
54
- logger?: import("@funkit/api-base").Logger | undefined;
55
54
  fee?: {
56
55
  token?: string;
57
56
  amount?: number;
@@ -59,6 +58,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
59
58
  recipient: Address;
60
59
  } | undefined;
61
60
  skipDBAction?: boolean | undefined;
61
+ logger?: import("@funkit/api-base").Logger | undefined;
62
62
  };
63
63
  export type TokenInfo = {
64
64
  symbol: string;
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  bifrostWallet
4
- } from "../chunk-545L7Y4M.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-W6N74MS3.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-7GSNBOD3.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-A5APNTGL.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-W5O4YSZN.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-6ONTSPEY.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-LEXSM5KI.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-KR6JBW5E.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-KFFJPS5R.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-DTRYS3MO.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-JXP2QPW7.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-HBA36GW3.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-XYBEMO3C.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-LMZMXEXL.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-HKV7EMYZ.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-3S2U24BJ.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-3NC26XLM.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-GSOYKKIS.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.js";
7
7
  export {
8
8
  gateWallet
9
9
  };
@@ -1,153 +1,153 @@
1
1
  "use client";
2
- import {
3
- walletConnectWallet
4
- } from "./chunk-NP5QGWNL.js";
5
2
  import {
6
3
  xdefiWallet
7
4
  } from "./chunk-NO7XMBB5.js";
5
+ import {
6
+ zealWallet
7
+ } from "./chunk-JROWU5BP.js";
8
8
  import {
9
9
  zerionWallet
10
- } from "./chunk-ETTNDQQG.js";
10
+ } from "./chunk-AXWP3GD4.js";
11
11
  import {
12
12
  tahoWallet
13
13
  } from "./chunk-6P2EMPZI.js";
14
14
  import {
15
- safepalWallet
16
- } from "./chunk-6LPM6LUQ.js";
15
+ talismanWallet
16
+ } from "./chunk-ABFSXBE6.js";
17
+ import {
18
+ subWallet
19
+ } from "./chunk-AD2KIJB6.js";
20
+ import {
21
+ tokenPocketWallet
22
+ } from "./chunk-IDKVN5CF.js";
17
23
  import {
18
24
  tokenaryWallet
19
25
  } from "./chunk-SLOIIJGP.js";
20
26
  import {
21
27
  trustWallet
22
- } from "./chunk-IPOC2VJX.js";
28
+ } from "./chunk-ISIBREBO.js";
23
29
  import {
24
30
  uniswapWallet
25
31
  } from "./chunk-LH7BMNFZ.js";
26
32
  import {
27
- tokenPocketWallet
28
- } from "./chunk-FRGSRLTS.js";
29
- import {
30
- zealWallet
31
- } from "./chunk-JROWU5BP.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
32
35
  import {
33
- foxWallet
34
- } from "./chunk-XYBEMO3C.js";
36
+ phantomWallet
37
+ } from "./chunk-ZSVTX6EK.js";
35
38
  import {
36
- roninWallet
37
- } from "./chunk-25VW5TZP.js";
39
+ rabbyWallet
40
+ } from "./chunk-BVX4XGNP.js";
38
41
  import {
39
42
  ramperWallet
40
43
  } from "./chunk-PIUNLQJG.js";
41
44
  import {
42
45
  rainbowWallet
43
- } from "./chunk-MOOBCMMB.js";
46
+ } from "./chunk-2UCNRD7H.js";
44
47
  import {
45
- oneKeyWallet
46
- } from "./chunk-4AD7VI2P.js";
48
+ roninWallet
49
+ } from "./chunk-63YLN6R5.js";
50
+ import {
51
+ safeWallet
52
+ } from "./chunk-BQQQL6UD.js";
47
53
  import {
48
54
  safeheronWallet
49
55
  } from "./chunk-R6RWZRFF.js";
50
56
  import {
51
- subWallet
52
- } from "./chunk-4UM4GTKZ.js";
57
+ safepalWallet
58
+ } from "./chunk-MSFKSQBY.js";
53
59
  import {
54
- safeWallet
55
- } from "./chunk-BQQQL6UD.js";
60
+ ledgerWallet
61
+ } from "./chunk-BRBKM4PW.js";
56
62
  import {
57
- talismanWallet
58
- } from "./chunk-ABFSXBE6.js";
63
+ metaMaskWallet
64
+ } from "./chunk-G73C6P5P.js";
59
65
  import {
60
66
  oktoWallet
61
67
  } from "./chunk-ADIXAKUL.js";
62
68
  import {
63
- oneInchWallet
64
- } from "./chunk-OESTDX6I.js";
69
+ mewWallet
70
+ } from "./chunk-V57WLZEE.js";
65
71
  import {
66
72
  okxWallet
67
- } from "./chunk-3U3BMEH5.js";
68
- import {
69
- metaMaskWallet
70
- } from "./chunk-N2NIIUW6.js";
71
- import {
72
- kresusWallet
73
- } from "./chunk-MJXPRJZT.js";
74
- import {
75
- phantomWallet
76
- } from "./chunk-ZSVTX6EK.js";
73
+ } from "./chunk-4WEHDI4Y.js";
77
74
  import {
78
- rabbyWallet
79
- } from "./chunk-BVX4XGNP.js";
75
+ oneInchWallet
76
+ } from "./chunk-OESTDX6I.js";
80
77
  import {
81
78
  omniWallet
82
79
  } from "./chunk-7CUY5G6R.js";
83
80
  import {
84
- gateWallet
85
- } from "./chunk-3NC26XLM.js";
86
- import {
87
- imTokenWallet
88
- } from "./chunk-COZ7MIQS.js";
81
+ oneKeyWallet
82
+ } from "./chunk-4AD7VI2P.js";
89
83
  import {
90
- frontierWallet
91
- } from "./chunk-HKV7EMYZ.js";
84
+ foxWallet
85
+ } from "./chunk-LMZMXEXL.js";
92
86
  import {
93
87
  frameWallet
94
88
  } from "./chunk-ZMYVTWDF.js";
95
89
  import {
96
- ledgerWallet
97
- } from "./chunk-BRBKM4PW.js";
90
+ frontierWallet
91
+ } from "./chunk-3S2U24BJ.js";
98
92
  import {
99
- mewWallet
100
- } from "./chunk-V57WLZEE.js";
93
+ gateWallet
94
+ } from "./chunk-GSOYKKIS.js";
95
+ import {
96
+ imTokenWallet
97
+ } from "./chunk-COZ7MIQS.js";
101
98
  import {
102
99
  injectedWallet
103
100
  } from "./chunk-VCVVV2K7.js";
104
101
  import {
105
- braveWallet
106
- } from "./chunk-PB254NQ4.js";
107
- import {
108
- coinbaseWallet
109
- } from "./chunk-H4IRCEZN.js";
102
+ kresusWallet
103
+ } from "./chunk-MJXPRJZT.js";
110
104
  import {
111
- coreWallet
112
- } from "./chunk-JXP2QPW7.js";
105
+ bybitWallet
106
+ } from "./chunk-6ONTSPEY.js";
113
107
  import {
114
108
  clvWallet
115
- } from "./chunk-LEXSM5KI.js";
109
+ } from "./chunk-KR6JBW5E.js";
110
+ import {
111
+ coin98Wallet
112
+ } from "./chunk-DTRYS3MO.js";
113
+ import {
114
+ coinbaseWallet
115
+ } from "./chunk-H4IRCEZN.js";
116
116
  import {
117
117
  dawnWallet
118
118
  } from "./chunk-LN7OD5EC.js";
119
- import {
120
- coin98Wallet
121
- } from "./chunk-KFFJPS5R.js";
122
119
  import {
123
120
  desigWallet
124
121
  } from "./chunk-CTU6JCOK.js";
122
+ import {
123
+ coreWallet
124
+ } from "./chunk-HBA36GW3.js";
125
125
  import {
126
126
  enkryptWallet
127
127
  } from "./chunk-SJTXS4ZW.js";
128
128
  import {
129
129
  bifrostWallet
130
- } from "./chunk-545L7Y4M.js";
130
+ } from "./chunk-W6N74MS3.js";
131
131
  import {
132
132
  argentWallet
133
133
  } from "./chunk-WSQ2YJO2.js";
134
+ import {
135
+ bitgetWallet
136
+ } from "./chunk-A5APNTGL.js";
134
137
  import {
135
138
  bitverseWallet
136
139
  } from "./chunk-3HZRRP4Y.js";
137
140
  import {
138
141
  bitskiWallet
139
142
  } from "./chunk-P74YPRF6.js";
140
- import {
141
- bybitWallet
142
- } from "./chunk-W5O4YSZN.js";
143
143
  import {
144
144
  bloomWallet
145
145
  } from "./chunk-S27IADFU.js";
146
+ import "./chunk-23WIEY36.js";
146
147
  import {
147
- bitgetWallet
148
- } from "./chunk-7GSNBOD3.js";
148
+ braveWallet
149
+ } from "./chunk-PB254NQ4.js";
149
150
  import "./chunk-WRA2DVJ7.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-N2NIIUW6.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-G73C6P5P.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-3U3BMEH5.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-4WEHDI4Y.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-MOOBCMMB.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-2UCNRD7H.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-25VW5TZP.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-63YLN6R5.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-6LPM6LUQ.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-MSFKSQBY.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-4UM4GTKZ.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-AD2KIJB6.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.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-FRGSRLTS.js";
5
- import "../chunk-WRA2DVJ7.js";
4
+ } from "../chunk-IDKVN5CF.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-WRA2DVJ7.js";
7
7
  export {
8
8
  tokenPocketWallet
9
9
  };