@funkit/connect 6.14.8 → 6.14.9

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 (37) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/hooks/track/useTrack.d.ts +36 -0
  3. package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
  4. package/dist/hooks/useCheckoutDirectExecution.d.ts +2 -1
  5. package/dist/hooks/useIsUsUser.d.ts +0 -2
  6. package/dist/hooks/useOnNewNotification.d.ts +8 -0
  7. package/dist/index.js +748 -348
  8. package/dist/modals/CheckoutModal/FunCheckoutStep.d.ts +20 -0
  9. package/dist/modals/CheckoutModal/TransferToken/CheckoutNotifications.track.d.ts +3 -0
  10. package/dist/modals/CheckoutModal/stepTransition.d.ts +3 -22
  11. package/dist/modals/CheckoutModal/stepTransition.track.d.ts +4 -0
  12. package/dist/providers/FunkitCheckoutContext.track.d.ts +10 -0
  13. package/dist/providers/FunkitQuoteContext.track.d.ts +4 -0
  14. package/dist/providers/FunkitStatsigProvider.d.ts +8 -0
  15. package/dist/utils/checkout.d.ts +1 -1
  16. package/dist/utils/flags/config.d.ts +4 -3
  17. package/dist/utils/flags/types.d.ts +1 -1
  18. package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
  19. package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
  20. package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
  21. package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
  22. package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
  23. package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
  24. package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
  25. package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
  26. package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
  27. package/dist/wallets/walletConnectors/index.js +68 -68
  28. package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
  29. package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
  30. package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
  31. package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
  32. package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
  33. package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
  34. package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
  35. package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
  36. package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
  37. package/package.json +8 -7
@@ -0,0 +1,20 @@
1
+ export declare enum FunCheckoutStep {
2
+ LOADING_ACCOUNT = "loading_account",
3
+ INPUT_AMOUNT = "input_amount",
4
+ SOURCE_CHANGE = "source_change",
5
+ CONFIRMATION = "confirmation",
6
+ MOONPAY_SETUP = "payment_setup",
7
+ SELECT_ASSET = "select_asset",
8
+ CHECKOUT_COMPLETE = "checkout_complete",
9
+ CHECKOUT_HELP = "checkout_help",
10
+ TRANSFER_TOKEN = "transfer_token",
11
+ CREATE_FIAT_ACCOUNT = "create_fiat_account",
12
+ BRIDGE_CUSTOMER = "bridge_customer",
13
+ BRIDGE_KYC = "bridge_kyc",
14
+ KYC_IFRAME = "KYC_IFRAME",
15
+ FIAT_ACCOUNT_DETAIL = "fiat_account_detail",
16
+ ERROR_SCREEN = "error_screen",
17
+ MELD_QUOTES = "meld_quotes",
18
+ MELD_CURRENCY_SELECT = "meld_currency_select",
19
+ DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center"
20
+ }
@@ -0,0 +1,3 @@
1
+ import { type TrackEventData } from '~/hooks/track/useTrack';
2
+ import type { NotificationItem } from './types';
3
+ export declare const trackEventFromNotification: (item: NotificationItem) => TrackEventData;
@@ -9,6 +9,7 @@ import { type CheckoutCompleteNext, type CheckoutCompleteState } from './Checkou
9
9
  import { type CheckoutHelpState } from './CheckoutHelp/CheckoutHelp';
10
10
  import { type ConfirmationStepNext, type ConfirmationStepState } from './ConfirmationStep/ConfirmationStep';
11
11
  import { type DirectExecutionNotifCenterState } from './DirectExecutionNotifCenter/DirectExecutionNotifCenter';
12
+ import { FunCheckoutStep } from './FunCheckoutStep';
12
13
  import { type InputAmountNext, type InputAmountState } from './InputAmount/InputAmount';
13
14
  import { type LoadingAccountNext, type LoadingAccountState } from './LoadingAccount';
14
15
  import { type MeldCurrencySelectNext, type MeldCurrencySelectState } from './MeldCurrencySelect/MeldCurrencySelect';
@@ -19,6 +20,7 @@ import { type SourceChangeNext, type SourceChangeState } from './SourceChange/So
19
20
  import { type TransferTokenNext, type TransferTokenState } from './TransferToken/TransferToken';
20
21
  import { type FiatAccountDetailNext, type FiatAccountDetailState } from './VirtualFiatAccount/FiatAccountDetail';
21
22
  import { type KycIframeNext, type KycIframeState } from './VirtualFiatAccount/KycIframe';
23
+ export { FunCheckoutStep };
22
24
  export interface CheckoutModalCommonState {
23
25
  checkoutId: string;
24
26
  /** Handles soft hiding of the dialog (without removing it from the DOM) */
@@ -39,26 +41,6 @@ export interface ModalStepComponentProps<S extends FunCheckoutStep = FunCheckout
39
41
  setModalState(state: SetStateAction<CheckoutModalState<S>>): void;
40
42
  }
41
43
  export declare function extractCommonState(state: CheckoutModalState): CheckoutModalCommonState;
42
- export declare enum FunCheckoutStep {
43
- LOADING_ACCOUNT = "loading_account",
44
- INPUT_AMOUNT = "input_amount",
45
- SOURCE_CHANGE = "source_change",
46
- CONFIRMATION = "confirmation",
47
- MOONPAY_SETUP = "payment_setup",
48
- SELECT_ASSET = "select_asset",
49
- CHECKOUT_COMPLETE = "checkout_complete",
50
- CHECKOUT_HELP = "checkout_help",
51
- TRANSFER_TOKEN = "transfer_token",
52
- CREATE_FIAT_ACCOUNT = "create_fiat_account",
53
- BRIDGE_CUSTOMER = "bridge_customer",
54
- BRIDGE_KYC = "bridge_kyc",
55
- KYC_IFRAME = "KYC_IFRAME",
56
- FIAT_ACCOUNT_DETAIL = "fiat_account_detail",
57
- ERROR_SCREEN = "error_screen",
58
- MELD_QUOTES = "meld_quotes",
59
- MELD_CURRENCY_SELECT = "meld_currency_select",
60
- DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center"
61
- }
62
44
  interface ModalStepInput<S extends FunCheckoutStep> {
63
45
  state: CheckoutModalState<S>;
64
46
  apiKey: string;
@@ -81,7 +63,7 @@ export type ModalStepInfo<S extends FunCheckoutStep> = {
81
63
  export declare const CheckoutModalSteps: {
82
64
  [S in FunCheckoutStep]: ModalStepInfo<S>;
83
65
  };
84
- type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
66
+ export type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
85
67
  [T in S]: {
86
68
  [FunCheckoutStep.CHECKOUT_COMPLETE]: CheckoutCompleteState;
87
69
  [FunCheckoutStep.CHECKOUT_HELP]: CheckoutHelpState;
@@ -151,4 +133,3 @@ export declare function useTitleConfig<S extends FunCheckoutStep>(checkoutItem:
151
133
  showFullHeight: boolean;
152
134
  title: string;
153
135
  };
154
- export {};
@@ -0,0 +1,4 @@
1
+ import { type TrackEventData } from '~/hooks/track/useTrack';
2
+ import { FunCheckoutStep } from './FunCheckoutStep';
3
+ import type { CheckoutModalState } from './stepTransition';
4
+ export declare const trackEventFromNextState: (nextState: CheckoutModalState<FunCheckoutStep>) => TrackEventData;
@@ -0,0 +1,10 @@
1
+ import { type TrackEventData } from '~/hooks/track/useTrack';
2
+ import type { FunkitActiveCheckoutItem } from './FunkitCheckoutContext';
3
+ export declare const trackEventFromActiveCheckoutItem: (activeCheckoutItem: FunkitActiveCheckoutItem) => TrackEventData;
4
+ import type { RelayTxHash, RelayVmType } from '@funkit/fun-relay';
5
+ import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
6
+ export declare const trackEventFromDirectExecutionConfirmed: ({ txHash, checkoutItem, latestQuote, }: {
7
+ txHash: RelayTxHash<RelayVmType>;
8
+ checkoutItem: FunkitActiveCheckoutItem;
9
+ latestQuote: FunkitCheckoutQuoteResult;
10
+ }) => TrackEventData;
@@ -0,0 +1,4 @@
1
+ import { type TrackEventData } from '~/hooks/track/useTrack';
2
+ import type { FunkitActiveCheckoutItem } from './FunkitCheckoutContext';
3
+ import type { FunkitCheckoutQuoteResult } from './FunkitHistoryContext';
4
+ export declare const trackEventFromFinalQuote: (finalEstimation: FunkitCheckoutQuoteResult, checkoutItem: FunkitActiveCheckoutItem) => TrackEventData;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import type { ReactNode } from 'react';
3
+ interface FunkitStatsigProviderProps {
4
+ children: ReactNode;
5
+ isDevelopment?: boolean;
6
+ }
7
+ export declare function FunkitStatsigProvider({ children, isDevelopment, }: FunkitStatsigProviderProps): React.JSX.Element;
8
+ export {};
@@ -55,6 +55,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
55
55
  bypassInit: boolean;
56
56
  apiKey?: string;
57
57
  nonce?: bigint | undefined;
58
+ logger?: import("@funkit/api-base").Logger | undefined;
58
59
  fee?: {
59
60
  token?: string;
60
61
  amount?: number;
@@ -62,7 +63,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
62
63
  recipient: Address;
63
64
  } | undefined;
64
65
  skipDBAction?: boolean | undefined;
65
- logger?: import("@funkit/api-base").Logger | undefined;
66
66
  };
67
67
  export type TokenInfo = {
68
68
  symbol: string;
@@ -1,3 +1,4 @@
1
+ import type { Override } from './types';
1
2
  export declare const flagConfig: {
2
3
  readonly supported_exchanges_v2: {
3
4
  readonly type: "string";
@@ -41,7 +42,7 @@ export declare const flagConfig: {
41
42
  readonly enable_token_transfer: {
42
43
  readonly type: "boolean";
43
44
  readonly default_value: false;
44
- readonly overrides: [{
45
+ readonly overrides: [Override<boolean>, {
45
46
  readonly if_any: [{
46
47
  readonly key: "apiKey";
47
48
  readonly type: "isAnyOf";
@@ -53,7 +54,7 @@ export declare const flagConfig: {
53
54
  readonly enable_fiat_deposit: {
54
55
  readonly type: "boolean";
55
56
  readonly default_value: false;
56
- readonly overrides: [{
57
+ readonly overrides: [Override<boolean>, {
57
58
  readonly if_any: [{
58
59
  readonly key: "userId";
59
60
  readonly type: "isAnyOf";
@@ -183,7 +184,7 @@ export declare const flagConfig: {
183
184
  readonly enable_card: {
184
185
  readonly type: "boolean";
185
186
  readonly default_value: true;
186
- readonly overrides: [{
187
+ readonly overrides: [Override<boolean>, {
187
188
  readonly if_any: [{
188
189
  readonly key: "userId";
189
190
  readonly type: "isAnyOf";
@@ -19,7 +19,7 @@ export interface StringFlagConfig {
19
19
  overrides?: Override<string>[];
20
20
  }
21
21
  export type InferFlagType<F extends FlagConfig> = F['type'] extends 'number' ? number : F['type'] extends 'string' ? string : F['type'] extends 'boolean' ? boolean : never;
22
- type Override<T> = {
22
+ export type Override<T> = {
23
23
  /** non-empty list of conditions, any condition will cause the value to match */
24
24
  if_any: Condition[];
25
25
  /** non-empty list of conditions, all condition will cause the value to match */
@@ -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,153 +1,153 @@
1
1
  "use client";
2
- import {
3
- walletConnectWallet
4
- } from "./chunk-NP5QGWNL.js";
5
- import {
6
- zerionWallet
7
- } from "./chunk-Q3H3TRBS.js";
8
2
  import {
9
3
  zealWallet
10
4
  } from "./chunk-RNBEDQHF.js";
11
5
  import {
12
- subWallet
13
- } from "./chunk-ZSI5N4VV.js";
6
+ xdefiWallet
7
+ } from "./chunk-BOU4WKRZ.js";
14
8
  import {
15
- tokenPocketWallet
16
- } from "./chunk-J3LI3FYZ.js";
9
+ zerionWallet
10
+ } from "./chunk-SULRQO27.js";
11
+ import {
12
+ subWallet
13
+ } from "./chunk-JWFF4AAL.js";
17
14
  import {
18
15
  tahoWallet
19
16
  } from "./chunk-ZZZRUXZE.js";
20
- import {
21
- tokenaryWallet
22
- } from "./chunk-D6AOOO5F.js";
23
17
  import {
24
18
  talismanWallet
25
19
  } from "./chunk-DRO6WYMM.js";
20
+ import {
21
+ tokenPocketWallet
22
+ } from "./chunk-2L43XSW3.js";
26
23
  import {
27
24
  trustWallet
28
- } from "./chunk-RKPCWHXL.js";
25
+ } from "./chunk-VYBAYMP3.js";
29
26
  import {
30
27
  uniswapWallet
31
28
  } from "./chunk-LH7BMNFZ.js";
32
29
  import {
33
- xdefiWallet
34
- } from "./chunk-BOU4WKRZ.js";
30
+ tokenaryWallet
31
+ } from "./chunk-D6AOOO5F.js";
35
32
  import {
36
- rabbyWallet
37
- } from "./chunk-BBOM42DL.js";
33
+ walletConnectWallet
34
+ } from "./chunk-NP5QGWNL.js";
38
35
  import {
39
- oneInchWallet
40
- } from "./chunk-OESTDX6I.js";
36
+ phantomWallet
37
+ } from "./chunk-362NXNTM.js";
41
38
  import {
42
- rainbowWallet
43
- } from "./chunk-3CICVJUN.js";
39
+ oneKeyWallet
40
+ } from "./chunk-SHBUZ7U7.js";
44
41
  import {
45
42
  ramperWallet
46
43
  } from "./chunk-BYXPFMI7.js";
47
44
  import {
48
45
  roninWallet
49
- } from "./chunk-QLVVUKYB.js";
46
+ } from "./chunk-NWIQNBJU.js";
47
+ import {
48
+ rainbowWallet
49
+ } from "./chunk-2KUBG3S6.js";
50
+ import {
51
+ safeWallet
52
+ } from "./chunk-BQQQL6UD.js";
50
53
  import {
51
54
  safepalWallet
52
- } from "./chunk-EC6CHBSZ.js";
55
+ } from "./chunk-NT2HYJKW.js";
53
56
  import {
54
57
  safeheronWallet
55
58
  } from "./chunk-RZIO5TFF.js";
56
59
  import {
57
- safeWallet
58
- } from "./chunk-BQQQL6UD.js";
60
+ mewWallet
61
+ } from "./chunk-OL5ZO7E4.js";
59
62
  import {
60
- kresusWallet
61
- } from "./chunk-MJXPRJZT.js";
63
+ metaMaskWallet
64
+ } from "./chunk-2HYNUNAS.js";
62
65
  import {
63
66
  ledgerWallet
64
67
  } from "./chunk-BRBKM4PW.js";
65
- import {
66
- mewWallet
67
- } from "./chunk-OL5ZO7E4.js";
68
68
  import {
69
69
  okxWallet
70
- } from "./chunk-AFXHGWBH.js";
70
+ } from "./chunk-TDIEHTMB.js";
71
71
  import {
72
72
  oktoWallet
73
73
  } from "./chunk-ADIXAKUL.js";
74
74
  import {
75
- oneKeyWallet
76
- } from "./chunk-SHBUZ7U7.js";
75
+ oneInchWallet
76
+ } from "./chunk-OESTDX6I.js";
77
77
  import {
78
78
  omniWallet
79
79
  } from "./chunk-7CUY5G6R.js";
80
80
  import {
81
- phantomWallet
82
- } from "./chunk-362NXNTM.js";
83
- import {
84
- frontierWallet
85
- } from "./chunk-VWCLFMWJ.js";
81
+ rabbyWallet
82
+ } from "./chunk-BBOM42DL.js";
86
83
  import {
87
84
  frameWallet
88
85
  } from "./chunk-IFON7E6U.js";
89
86
  import {
90
- coreWallet
91
- } from "./chunk-JCHN6A47.js";
87
+ frontierWallet
88
+ } from "./chunk-TCAGNB4B.js";
92
89
  import {
93
- injectedWallet
94
- } from "./chunk-XWUJE7MW.js";
90
+ enkryptWallet
91
+ } from "./chunk-OLOIXTYS.js";
92
+ import {
93
+ gateWallet
94
+ } from "./chunk-FKJJQNKX.js";
95
95
  import {
96
96
  imTokenWallet
97
97
  } from "./chunk-COZ7MIQS.js";
98
98
  import {
99
- gateWallet
100
- } from "./chunk-CJGUM55H.js";
99
+ kresusWallet
100
+ } from "./chunk-MJXPRJZT.js";
101
101
  import {
102
- metaMaskWallet
103
- } from "./chunk-UYGJO62F.js";
102
+ injectedWallet
103
+ } from "./chunk-XWUJE7MW.js";
104
104
  import {
105
- braveWallet
106
- } from "./chunk-BPZ2XJO2.js";
105
+ clvWallet
106
+ } from "./chunk-M3NZ6R2E.js";
107
107
  import {
108
- coinbaseWallet
109
- } from "./chunk-H4IRCEZN.js";
108
+ bybitWallet
109
+ } from "./chunk-2STUC6QL.js";
110
110
  import {
111
111
  coin98Wallet
112
- } from "./chunk-KIDC67XJ.js";
112
+ } from "./chunk-OBOVHCEI.js";
113
+ import {
114
+ coreWallet
115
+ } from "./chunk-VR4TBQ6S.js";
113
116
  import {
114
117
  dawnWallet
115
118
  } from "./chunk-HWPKCIBE.js";
116
119
  import {
117
- clvWallet
118
- } from "./chunk-2GJQ4XZQ.js";
119
- import {
120
- foxWallet
121
- } from "./chunk-CNPKISHN.js";
122
- import {
123
- enkryptWallet
124
- } from "./chunk-OLOIXTYS.js";
120
+ coinbaseWallet
121
+ } from "./chunk-H4IRCEZN.js";
125
122
  import {
126
123
  desigWallet
127
124
  } from "./chunk-OPAZMNA7.js";
128
125
  import {
129
- bifrostWallet
130
- } from "./chunk-UIASLGLV.js";
126
+ foxWallet
127
+ } from "./chunk-7QONTUXT.js";
128
+ import {
129
+ bitgetWallet
130
+ } from "./chunk-TDAVGY5F.js";
131
131
  import {
132
132
  argentWallet
133
133
  } from "./chunk-WSQ2YJO2.js";
134
+ import {
135
+ bifrostWallet
136
+ } from "./chunk-A5N6B5UW.js";
134
137
  import {
135
138
  bitskiWallet
136
139
  } from "./chunk-HS3C7OQV.js";
137
- import {
138
- bitgetWallet
139
- } from "./chunk-5W7VDOCL.js";
140
140
  import {
141
141
  bitverseWallet
142
142
  } from "./chunk-3HZRRP4Y.js";
143
143
  import {
144
144
  bloomWallet
145
145
  } from "./chunk-S27IADFU.js";
146
+ import "./chunk-23WIEY36.js";
146
147
  import {
147
- bybitWallet
148
- } from "./chunk-LNEC5RNX.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
  };
@@ -1,9 +1,9 @@
1
1
  "use client";
2
2
  import {
3
3
  zerionWallet
4
- } from "../chunk-Q3H3TRBS.js";
5
- import "../chunk-DNSG5Q7V.js";
4
+ } from "../chunk-SULRQO27.js";
6
5
  import "../chunk-23WIEY36.js";
6
+ import "../chunk-DNSG5Q7V.js";
7
7
  export {
8
8
  zerionWallet
9
9
  };