@funkit/connect 5.1.1 → 5.1.3
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.
- package/CHANGELOG.md +30 -0
- package/dist/{chunk-SPLTPSN6.js → chunk-IDAA2OY6.js} +9 -1
- package/dist/{chunk-ZX3JBDYE.js → chunk-L55ALBJE.js} +9 -1
- package/dist/components/Box/Box.d.ts +43 -43
- package/dist/components/Dialog/Dialog.d.ts +2 -3
- package/dist/components/Dropdown/BaseActiveDropdownItem.d.ts +6 -3
- package/dist/components/Dropdown/BaseDropdown.d.ts +4 -9
- package/dist/components/Dropdown/BaseDropdownItem.d.ts +1 -1
- package/dist/components/Dropdown/ChainDropdown.d.ts +2 -1
- package/dist/components/Dropdown/ReceiveTokenDropdown.d.ts +2 -1
- package/dist/components/Dropdown/TokenDropdown.d.ts +3 -1
- package/dist/components/FunAlert/FunAlert.d.ts +3 -1
- package/dist/components/FunAsset/FunAssetItem.d.ts +1 -3
- package/dist/components/FunBadge/FunBadge.d.ts +14 -4
- package/dist/components/FunButton/FunButton.css.d.ts +2 -1
- package/dist/components/FunButton/FunLinkButton.d.ts +11 -8
- package/dist/components/FunPaymentMethodItem/FunPaymentMethodItem.d.ts +2 -1
- package/dist/components/FunTooltip/FunTooltip.d.ts +2 -2
- package/dist/components/Icons/New/PercentageIcon.d.ts +2 -0
- package/dist/components/Icons/StatusIcons.d.ts +1 -0
- package/dist/components/QRCode/QRCodeSkeletonLoader.d.ts +1 -1
- package/dist/components/SolanaDepositAlert/SolanaDepositAlert.d.ts +6 -0
- package/dist/components/TransferTokenDetails/TransferTokenDetails.d.ts +4 -3
- package/dist/consts/checkout.d.ts +4 -2
- package/dist/css/sprinkles.css.d.ts +55 -43
- package/dist/domains/asset.d.ts +12 -1
- package/dist/domains/checkoutRecipient.d.ts +6 -0
- package/dist/hooks/useTokenTransfer.d.ts +3 -2
- package/dist/index.css +2653 -2269
- package/dist/index.d.ts +7 -2
- package/dist/index.js +923 -705
- package/dist/modals/CheckoutModal/ConfirmationStep/ConfirmationStep.d.ts +0 -1
- package/dist/modals/CheckoutModal/SelectAsset.d.ts +2 -0
- package/dist/modals/CheckoutModal/TransferToken/TransferToken.d.ts +8 -2
- package/dist/modals/CheckoutModal/stepTransition.d.ts +3 -2
- package/dist/providers/AuthenticationContext.d.ts +1 -2
- package/dist/providers/FunkitCheckoutContext.d.ts +4 -4
- package/dist/providers/FunkitConfigContext.d.ts +1 -0
- package/dist/providers/FunkitMoonpayProvider.d.ts +2 -1
- package/dist/providers/FunkitThemeProvider.d.ts +18 -0
- package/dist/themes/darkTheme.js +1 -1
- package/dist/themes/lightTheme.js +1 -1
- package/dist/utils/consts.d.ts +1 -0
- package/dist/utils/flags/config.d.ts +9 -15
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bybitWallet/bybitWallet.js +2 -2
- package/dist/wallets/walletConnectors/clvWallet/clvWallet.js +2 -2
- package/dist/wallets/walletConnectors/coin98Wallet/coin98Wallet.js +2 -2
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +2 -2
- package/dist/wallets/walletConnectors/foxWallet/foxWallet.js +2 -2
- package/dist/wallets/walletConnectors/frontierWallet/frontierWallet.js +2 -2
- package/dist/wallets/walletConnectors/gateWallet/gateWallet.js +2 -2
- package/dist/wallets/walletConnectors/index.js +49 -49
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.js +2 -2
- package/dist/wallets/walletConnectors/roninWallet/roninWallet.js +2 -2
- package/dist/wallets/walletConnectors/safepalWallet/safepalWallet.js +2 -2
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +2 -2
- package/dist/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.js +2 -2
- package/dist/wallets/walletConnectors/trustWallet/trustWallet.js +2 -2
- package/dist/wallets/walletConnectors/zerionWallet/zerionWallet.js +2 -2
- package/package.json +5 -5
- package/dist/components/FunAsset/FunAssetBadge.d.ts +0 -16
- package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.css.d.ts +0 -1
- package/dist/components/FunNotificationBanner/FunNotificationBannerSummary.d.ts +0 -7
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type PaymentMethodAccountInfo, type PaymentMethodBrokerageInfo } from '../../domains/paymentMethods';
|
|
3
|
+
import type { TransferTokenDefault } from './TransferToken/TransferToken';
|
|
3
4
|
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from './stepTransition';
|
|
4
5
|
export type SelectAssetState = CheckoutModalCommonState & {
|
|
5
6
|
paymentMethodInfo: PaymentMethodBrokerageInfo | PaymentMethodAccountInfo;
|
|
@@ -7,6 +8,7 @@ export type SelectAssetState = CheckoutModalCommonState & {
|
|
|
7
8
|
export type SelectAssetNext = {
|
|
8
9
|
paymentMethodInfo?: PaymentMethodBrokerageInfo | PaymentMethodAccountInfo;
|
|
9
10
|
disconnectedBrokerage?: boolean;
|
|
11
|
+
transferToken?: TransferTokenDefault;
|
|
10
12
|
};
|
|
11
13
|
export declare const SelectAssetInfo: ModalStepInfo<FunCheckoutStep.SELECT_ASSET>;
|
|
12
14
|
export declare function SelectAsset({ modalState, onNext, }: ModalStepComponentProps<FunCheckoutStep.SELECT_ASSET>): React.JSX.Element;
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
|
|
3
|
-
export type
|
|
3
|
+
export type TransferTokenDefault = {
|
|
4
|
+
token: string;
|
|
5
|
+
chainId: number;
|
|
6
|
+
};
|
|
7
|
+
export type TransferTokenState = CheckoutModalCommonState & {
|
|
8
|
+
transferToken?: TransferTokenDefault;
|
|
9
|
+
};
|
|
4
10
|
export type TransferTokenNext = Record<string, never>;
|
|
5
11
|
export interface TokenTransferSourceChainsAndAssets {
|
|
6
12
|
[chainId: number]: string[];
|
|
7
13
|
}
|
|
8
14
|
export declare const TransferTokenInfo: ModalStepInfo<FunCheckoutStep.TRANSFER_TOKEN>;
|
|
9
|
-
export declare function TransferToken({ onNext, }: ModalStepComponentProps<FunCheckoutStep.TRANSFER_TOKEN>): React.JSX.Element;
|
|
15
|
+
export declare function TransferToken({ onNext, modalState, }: ModalStepComponentProps<FunCheckoutStep.TRANSFER_TOKEN>): React.JSX.Element;
|
|
@@ -17,8 +17,6 @@ export interface CheckoutModalCommonState {
|
|
|
17
17
|
checkoutId: string;
|
|
18
18
|
/** Handles soft hiding of the dialog (without removing it from the DOM) */
|
|
19
19
|
isSoftHidden: boolean;
|
|
20
|
-
/** Hides the close button in the Dialog Title element */
|
|
21
|
-
isCloseButtonHidden?: boolean;
|
|
22
20
|
/** Whether checkout should not be allowed to continue due to security reasons*/
|
|
23
21
|
isBlocked?: boolean;
|
|
24
22
|
targetChainId: string;
|
|
@@ -48,6 +46,8 @@ export declare enum FunCheckoutStep {
|
|
|
48
46
|
export type ModalStepInfo<S extends FunCheckoutStep> = {
|
|
49
47
|
Component: ComponentType<ModalStepComponentProps<S>>;
|
|
50
48
|
disableBack?: boolean;
|
|
49
|
+
/** Hides the close button in the Dialog Title element */
|
|
50
|
+
hideClose?: boolean;
|
|
51
51
|
onBack?(state: CheckoutModalState<S>, prevState: CheckoutModalState): CheckoutModalState;
|
|
52
52
|
onNext(state: CheckoutModalState<S>, payload: NextPayload<S>): CheckoutModalState;
|
|
53
53
|
showFullHeight?: boolean;
|
|
@@ -107,6 +107,7 @@ export declare function useCheckoutModalTransition(checkoutItem: FunkitActiveChe
|
|
|
107
107
|
};
|
|
108
108
|
export declare function useTitleConfig<S extends FunCheckoutStep>(checkoutItem: FunkitActiveCheckoutItem, state: CheckoutModalState<S>): {
|
|
109
109
|
disableBack: boolean;
|
|
110
|
+
hideClose: boolean;
|
|
110
111
|
showFullHeight: boolean;
|
|
111
112
|
title: string;
|
|
112
113
|
};
|
|
@@ -21,11 +21,10 @@ export interface AuthenticationConfig<Message> {
|
|
|
21
21
|
status: AuthenticationStatus;
|
|
22
22
|
}
|
|
23
23
|
export declare function createAuthenticationAdapter<Message>(adapter: AuthenticationAdapter<Message>): AuthenticationAdapter<Message>;
|
|
24
|
-
interface FunkitConnectAuthenticationProviderProps<Message> extends AuthenticationConfig<Message> {
|
|
24
|
+
export interface FunkitConnectAuthenticationProviderProps<Message> extends AuthenticationConfig<Message> {
|
|
25
25
|
enabled?: boolean;
|
|
26
26
|
children: ReactNode;
|
|
27
27
|
}
|
|
28
28
|
export declare function FunkitConnectAuthenticationProvider<Message = unknown>({ adapter, children, enabled, status, }: FunkitConnectAuthenticationProviderProps<Message>): React.JSX.Element;
|
|
29
29
|
export declare function useAuthenticationAdapter(): AuthenticationAdapter<any>;
|
|
30
30
|
export declare function useAuthenticationStatus(): AuthenticationStatus | null;
|
|
31
|
-
export {};
|
|
@@ -45,16 +45,16 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
|
|
|
45
45
|
/** minimal toAmount needed to proceed checkout. Checked after quote */
|
|
46
46
|
targetAssetMinAmount?: number;
|
|
47
47
|
}
|
|
48
|
-
interface FunkitCheckoutValidationResult {
|
|
48
|
+
export interface FunkitCheckoutValidationResult {
|
|
49
49
|
isValid: boolean;
|
|
50
50
|
message: string;
|
|
51
51
|
}
|
|
52
|
-
type FunkitCheckoutResult = {
|
|
52
|
+
export type FunkitCheckoutResult = {
|
|
53
53
|
type: 'error' | 'success';
|
|
54
54
|
message: string;
|
|
55
55
|
metadata: object | Error;
|
|
56
56
|
};
|
|
57
|
-
interface UseFunkitCheckoutProps {
|
|
57
|
+
export interface UseFunkitCheckoutProps {
|
|
58
58
|
/** @optional the checkout config object **/
|
|
59
59
|
config?: FunkitCheckoutConfig;
|
|
60
60
|
/** @optional fires when the checkout modal is opened **/
|
|
@@ -75,7 +75,7 @@ interface UseFunkitCheckoutProps {
|
|
|
75
75
|
onLoginRequired?: () => void;
|
|
76
76
|
}
|
|
77
77
|
/** Ensures that config is defined */
|
|
78
|
-
interface UseFunkitCheckoutPropsWithFullConfig extends UseFunkitCheckoutProps {
|
|
78
|
+
export interface UseFunkitCheckoutPropsWithFullConfig extends UseFunkitCheckoutProps {
|
|
79
79
|
config: FunkitCheckoutConfig;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
@@ -4,7 +4,8 @@ export declare function FunkitMoonpayProvider({ children, debug, }: {
|
|
|
4
4
|
debug: boolean;
|
|
5
5
|
}): React.JSX.Element;
|
|
6
6
|
export interface UserIpInfoFromMoonpay {
|
|
7
|
-
|
|
7
|
+
/** https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 */
|
|
8
|
+
alpha2: 'AU' | 'CA' | 'US' | string;
|
|
8
9
|
alpha3: string;
|
|
9
10
|
country: string;
|
|
10
11
|
ipAddress: string;
|
|
@@ -46,6 +46,7 @@ export declare const useActiveTheme: () => {
|
|
|
46
46
|
modalBackground: string;
|
|
47
47
|
modalBorder: string;
|
|
48
48
|
offBackground: string;
|
|
49
|
+
offBackgroundInverse: string;
|
|
49
50
|
offBackgroundComplimentary: string;
|
|
50
51
|
hoverState: string;
|
|
51
52
|
lightStroke: string;
|
|
@@ -87,6 +88,9 @@ export declare const useActiveTheme: () => {
|
|
|
87
88
|
badgeBackgroundSuccess: string;
|
|
88
89
|
badgeBorderSuccess: string;
|
|
89
90
|
badgeTextSuccess: string;
|
|
91
|
+
badgeBackgroundSolana: string;
|
|
92
|
+
badgeBorderSolana: string;
|
|
93
|
+
badgeTextSolana: string;
|
|
90
94
|
inputAmountQuickOptionBaseBackground: string;
|
|
91
95
|
inputAmountQuickOptionHoverBackground: string;
|
|
92
96
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -101,6 +105,8 @@ export declare const useActiveTheme: () => {
|
|
|
101
105
|
youPayYouReceiveSecondaryText: string;
|
|
102
106
|
announceGradientFrom: string;
|
|
103
107
|
announceGradientTo: string;
|
|
108
|
+
modalHeaderDivider: string;
|
|
109
|
+
modalFooterDivider: string;
|
|
104
110
|
};
|
|
105
111
|
fonts: {
|
|
106
112
|
body: string;
|
|
@@ -208,6 +214,7 @@ export declare const useActiveTheme: () => {
|
|
|
208
214
|
modalBackground: string;
|
|
209
215
|
modalBorder: string;
|
|
210
216
|
offBackground: string;
|
|
217
|
+
offBackgroundInverse: string;
|
|
211
218
|
offBackgroundComplimentary: string;
|
|
212
219
|
hoverState: string;
|
|
213
220
|
lightStroke: string;
|
|
@@ -249,6 +256,9 @@ export declare const useActiveTheme: () => {
|
|
|
249
256
|
badgeBackgroundSuccess: string;
|
|
250
257
|
badgeBorderSuccess: string;
|
|
251
258
|
badgeTextSuccess: string;
|
|
259
|
+
badgeBackgroundSolana: string;
|
|
260
|
+
badgeBorderSolana: string;
|
|
261
|
+
badgeTextSolana: string;
|
|
252
262
|
inputAmountQuickOptionBaseBackground: string;
|
|
253
263
|
inputAmountQuickOptionHoverBackground: string;
|
|
254
264
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -263,6 +273,8 @@ export declare const useActiveTheme: () => {
|
|
|
263
273
|
youPayYouReceiveSecondaryText: string;
|
|
264
274
|
announceGradientFrom: string;
|
|
265
275
|
announceGradientTo: string;
|
|
276
|
+
modalHeaderDivider: string;
|
|
277
|
+
modalFooterDivider: string;
|
|
266
278
|
};
|
|
267
279
|
fonts: {
|
|
268
280
|
body: string;
|
|
@@ -368,6 +380,7 @@ export declare const useActiveTheme: () => {
|
|
|
368
380
|
modalBackground: string;
|
|
369
381
|
modalBorder: string;
|
|
370
382
|
offBackground: string;
|
|
383
|
+
offBackgroundInverse: string;
|
|
371
384
|
offBackgroundComplimentary: string;
|
|
372
385
|
hoverState: string;
|
|
373
386
|
lightStroke: string;
|
|
@@ -409,6 +422,9 @@ export declare const useActiveTheme: () => {
|
|
|
409
422
|
badgeBackgroundSuccess: string;
|
|
410
423
|
badgeBorderSuccess: string;
|
|
411
424
|
badgeTextSuccess: string;
|
|
425
|
+
badgeBackgroundSolana: string;
|
|
426
|
+
badgeBorderSolana: string;
|
|
427
|
+
badgeTextSolana: string;
|
|
412
428
|
inputAmountQuickOptionBaseBackground: string;
|
|
413
429
|
inputAmountQuickOptionHoverBackground: string;
|
|
414
430
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -423,6 +439,8 @@ export declare const useActiveTheme: () => {
|
|
|
423
439
|
youPayYouReceiveSecondaryText: string;
|
|
424
440
|
announceGradientFrom: string;
|
|
425
441
|
announceGradientTo: string;
|
|
442
|
+
modalHeaderDivider: string;
|
|
443
|
+
modalFooterDivider: string;
|
|
426
444
|
};
|
|
427
445
|
fonts: {
|
|
428
446
|
body: string;
|
package/dist/themes/darkTheme.js
CHANGED
package/dist/utils/consts.d.ts
CHANGED
|
@@ -58,20 +58,6 @@ export declare const flagConfig: {
|
|
|
58
58
|
token_transfer_source_chains_and_assets: {
|
|
59
59
|
type: "string";
|
|
60
60
|
default_value: string;
|
|
61
|
-
overrides: {
|
|
62
|
-
if_any: ({
|
|
63
|
-
key: "userId";
|
|
64
|
-
type: "pctRollout";
|
|
65
|
-
pct: number;
|
|
66
|
-
values?: undefined;
|
|
67
|
-
} | {
|
|
68
|
-
key: "userId";
|
|
69
|
-
type: "isAnyOf";
|
|
70
|
-
values: string[];
|
|
71
|
-
pct?: undefined;
|
|
72
|
-
})[];
|
|
73
|
-
value: string;
|
|
74
|
-
}[];
|
|
75
61
|
};
|
|
76
62
|
enable_token_transfer_universal_deposit_address: {
|
|
77
63
|
type: "boolean";
|
|
@@ -138,6 +124,14 @@ export declare const flagConfig: {
|
|
|
138
124
|
};
|
|
139
125
|
enable_vertex_swap_bypass: {
|
|
140
126
|
type: "boolean";
|
|
141
|
-
default_value:
|
|
127
|
+
default_value: true;
|
|
128
|
+
};
|
|
129
|
+
display_solana_new_badge: {
|
|
130
|
+
type: "boolean";
|
|
131
|
+
default_value: true;
|
|
132
|
+
};
|
|
133
|
+
display_solana_deposits_banner: {
|
|
134
|
+
type: "boolean";
|
|
135
|
+
default_value: true;
|
|
142
136
|
};
|
|
143
137
|
};
|
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import {
|
|
6
|
-
zerionWallet
|
|
7
|
-
} from "./chunk-AXWP3GD4.js";
|
|
3
|
+
walletConnectWallet
|
|
4
|
+
} from "./chunk-NP5QGWNL.js";
|
|
8
5
|
import {
|
|
9
6
|
zealWallet
|
|
10
7
|
} from "./chunk-JROWU5BP.js";
|
|
8
|
+
import {
|
|
9
|
+
zerionWallet
|
|
10
|
+
} from "./chunk-ETTNDQQG.js";
|
|
11
11
|
import {
|
|
12
12
|
subWallet
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-4UM4GTKZ.js";
|
|
14
14
|
import {
|
|
15
15
|
tahoWallet
|
|
16
16
|
} from "./chunk-6P2EMPZI.js";
|
|
17
17
|
import {
|
|
18
18
|
talismanWallet
|
|
19
19
|
} from "./chunk-ABFSXBE6.js";
|
|
20
|
-
import {
|
|
21
|
-
tokenPocketWallet
|
|
22
|
-
} from "./chunk-IDKVN5CF.js";
|
|
23
20
|
import {
|
|
24
21
|
tokenaryWallet
|
|
25
22
|
} from "./chunk-SLOIIJGP.js";
|
|
26
23
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
24
|
+
tokenPocketWallet
|
|
25
|
+
} from "./chunk-FRGSRLTS.js";
|
|
29
26
|
import {
|
|
30
27
|
uniswapWallet
|
|
31
28
|
} from "./chunk-LH7BMNFZ.js";
|
|
32
29
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
30
|
+
trustWallet
|
|
31
|
+
} from "./chunk-IPOC2VJX.js";
|
|
32
|
+
import {
|
|
33
|
+
xdefiWallet
|
|
34
|
+
} from "./chunk-NO7XMBB5.js";
|
|
35
35
|
import {
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-ZSVTX6EK.js";
|
|
@@ -40,13 +40,16 @@ import {
|
|
|
40
40
|
} from "./chunk-BVX4XGNP.js";
|
|
41
41
|
import {
|
|
42
42
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-MOOBCMMB.js";
|
|
44
44
|
import {
|
|
45
45
|
ramperWallet
|
|
46
46
|
} from "./chunk-PIUNLQJG.js";
|
|
47
|
+
import {
|
|
48
|
+
safepalWallet
|
|
49
|
+
} from "./chunk-6LPM6LUQ.js";
|
|
47
50
|
import {
|
|
48
51
|
roninWallet
|
|
49
|
-
} from "./chunk-
|
|
52
|
+
} from "./chunk-25VW5TZP.js";
|
|
50
53
|
import {
|
|
51
54
|
safeWallet
|
|
52
55
|
} from "./chunk-BQQQL6UD.js";
|
|
@@ -54,71 +57,68 @@ import {
|
|
|
54
57
|
safeheronWallet
|
|
55
58
|
} from "./chunk-R6RWZRFF.js";
|
|
56
59
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
60
|
+
ledgerWallet
|
|
61
|
+
} from "./chunk-BRBKM4PW.js";
|
|
59
62
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
63
|
+
mewWallet
|
|
64
|
+
} from "./chunk-V57WLZEE.js";
|
|
62
65
|
import {
|
|
63
66
|
metaMaskWallet
|
|
64
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-N2NIIUW6.js";
|
|
65
68
|
import {
|
|
66
|
-
|
|
67
|
-
} from "./chunk-
|
|
69
|
+
okxWallet
|
|
70
|
+
} from "./chunk-3U3BMEH5.js";
|
|
71
|
+
import {
|
|
72
|
+
oneInchWallet
|
|
73
|
+
} from "./chunk-OESTDX6I.js";
|
|
68
74
|
import {
|
|
69
75
|
oktoWallet
|
|
70
76
|
} from "./chunk-ADIXAKUL.js";
|
|
71
|
-
import {
|
|
72
|
-
okxWallet
|
|
73
|
-
} from "./chunk-4WEHDI4Y.js";
|
|
74
77
|
import {
|
|
75
78
|
omniWallet
|
|
76
79
|
} from "./chunk-7CUY5G6R.js";
|
|
77
|
-
import {
|
|
78
|
-
oneInchWallet
|
|
79
|
-
} from "./chunk-OESTDX6I.js";
|
|
80
80
|
import {
|
|
81
81
|
oneKeyWallet
|
|
82
82
|
} from "./chunk-4AD7VI2P.js";
|
|
83
83
|
import {
|
|
84
84
|
foxWallet
|
|
85
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-XYBEMO3C.js";
|
|
86
86
|
import {
|
|
87
87
|
frameWallet
|
|
88
88
|
} from "./chunk-ZMYVTWDF.js";
|
|
89
89
|
import {
|
|
90
90
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
92
|
-
import {
|
|
93
|
-
gateWallet
|
|
94
|
-
} from "./chunk-GSOYKKIS.js";
|
|
91
|
+
} from "./chunk-HKV7EMYZ.js";
|
|
95
92
|
import {
|
|
96
93
|
imTokenWallet
|
|
97
94
|
} from "./chunk-COZ7MIQS.js";
|
|
95
|
+
import {
|
|
96
|
+
gateWallet
|
|
97
|
+
} from "./chunk-3NC26XLM.js";
|
|
98
98
|
import {
|
|
99
99
|
injectedWallet
|
|
100
100
|
} from "./chunk-VCVVV2K7.js";
|
|
101
101
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
102
|
+
kresusWallet
|
|
103
|
+
} from "./chunk-MJXPRJZT.js";
|
|
104
104
|
import {
|
|
105
105
|
bybitWallet
|
|
106
|
-
} from "./chunk-
|
|
106
|
+
} from "./chunk-W5O4YSZN.js";
|
|
107
107
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
108
|
+
braveWallet
|
|
109
|
+
} from "./chunk-PB254NQ4.js";
|
|
110
110
|
import {
|
|
111
111
|
coin98Wallet
|
|
112
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-KFFJPS5R.js";
|
|
113
113
|
import {
|
|
114
114
|
coinbaseWallet
|
|
115
115
|
} from "./chunk-H4IRCEZN.js";
|
|
116
|
-
import {
|
|
117
|
-
coreWallet
|
|
118
|
-
} from "./chunk-HBA36GW3.js";
|
|
119
116
|
import {
|
|
120
117
|
desigWallet
|
|
121
118
|
} from "./chunk-CTU6JCOK.js";
|
|
119
|
+
import {
|
|
120
|
+
coreWallet
|
|
121
|
+
} from "./chunk-JXP2QPW7.js";
|
|
122
122
|
import {
|
|
123
123
|
dawnWallet
|
|
124
124
|
} from "./chunk-LN7OD5EC.js";
|
|
@@ -128,12 +128,12 @@ import {
|
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
|
-
import {
|
|
132
|
-
bifrostWallet
|
|
133
|
-
} from "./chunk-W6N74MS3.js";
|
|
134
131
|
import {
|
|
135
132
|
bitgetWallet
|
|
136
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-7GSNBOD3.js";
|
|
134
|
+
import {
|
|
135
|
+
bifrostWallet
|
|
136
|
+
} from "./chunk-545L7Y4M.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-P74YPRF6.js";
|
|
@@ -143,11 +143,11 @@ import {
|
|
|
143
143
|
import {
|
|
144
144
|
bloomWallet
|
|
145
145
|
} from "./chunk-S27IADFU.js";
|
|
146
|
-
import "./chunk-23WIEY36.js";
|
|
147
146
|
import {
|
|
148
|
-
|
|
149
|
-
} from "./chunk-
|
|
147
|
+
clvWallet
|
|
148
|
+
} from "./chunk-LEXSM5KI.js";
|
|
150
149
|
import "./chunk-WRA2DVJ7.js";
|
|
150
|
+
import "./chunk-23WIEY36.js";
|
|
151
151
|
export {
|
|
152
152
|
argentWallet,
|
|
153
153
|
bifrostWallet,
|