@funkit/connect 5.1.0 → 5.1.1
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 +22 -0
- package/dist/{chunk-2T4ZDGAO.js → chunk-A7G4HZZY.js} +9 -4
- package/dist/{chunk-DYPSSLLL.js → chunk-SPLTPSN6.js} +2 -8
- package/dist/{chunk-5HIKBJTA.js → chunk-ZX3JBDYE.js} +2 -8
- package/dist/components/Box/Box.d.ts +29 -29
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryContent.d.ts +1 -2
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryDetail.d.ts +1 -2
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryTransaction.d.ts +7 -1
- package/dist/components/FunCheckoutHistory/FunCheckoutStatus.d.ts +2 -0
- package/dist/components/FunCheckoutHistory/FunDirectExecutionHistoryDetail.d.ts +7 -0
- package/dist/components/FunTransactionSummary/FunTxSummaryComponents.d.ts +1 -1
- package/dist/components/FunTransactionSummary/PaymentMethodSummary.d.ts +2 -1
- package/dist/consts/checkout.d.ts +5 -1
- package/dist/css/cssObjectFromTheme.d.ts +1 -1
- package/dist/css/sprinkles.css.d.ts +33 -43
- package/dist/domains/asset.d.ts +1 -2
- package/dist/domains/quote.d.ts +8 -0
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
- package/dist/index.css +2254 -2671
- package/dist/index.js +1659 -1353
- package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutConfirmation.d.ts +2 -1
- package/dist/modals/CheckoutModal/ConfirmationStep/usePostCheckout.d.ts +0 -1
- package/dist/providers/FunkitCheckoutContext.d.ts +1 -1
- package/dist/providers/FunkitHistoryContext.d.ts +2 -1
- package/dist/providers/FunkitThemeProvider.d.ts +6 -21
- package/dist/providers/GeneralWalletProvider.d.ts +8 -8
- package/dist/themes/baseTheme.js +1 -1
- package/dist/themes/darkTheme.js +2 -2
- package/dist/themes/lightTheme.js +2 -2
- package/dist/utils/checkout.d.ts +10 -2
- package/dist/utils/flags/config.d.ts +18 -0
- package/dist/utils/signature.d.ts +1 -0
- 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 +54 -54
- 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 +17 -17
|
@@ -7,7 +7,8 @@ export interface CheckoutConfirmationError extends ErrorNotification {
|
|
|
7
7
|
export declare enum ConfirmationErrorCode {
|
|
8
8
|
QUOTE_EXPIRED = "QUOTE_EXPIRED",
|
|
9
9
|
GENERIC_ERROR = "GENERIC_ERROR",
|
|
10
|
-
RISK_ERROR = "RISK_ERROR"
|
|
10
|
+
RISK_ERROR = "RISK_ERROR",
|
|
11
|
+
SIGNATURE_DENIED = "SIGNATURE_DENIED"
|
|
11
12
|
}
|
|
12
13
|
interface UseCheckoutConfirmationOptions {
|
|
13
14
|
onError(error: CheckoutConfirmationError): void;
|
|
@@ -24,6 +24,5 @@ interface UsePostCheckoutResult {
|
|
|
24
24
|
postCheckoutError: PostCheckoutError | null;
|
|
25
25
|
postCheckoutStepMessage: string | null;
|
|
26
26
|
}
|
|
27
|
-
export declare function isUserRejectedError(error: unknown): boolean;
|
|
28
27
|
export declare function usePostCheckout({ onSuccess, }: UsePostCheckoutOptions): UsePostCheckoutResult;
|
|
29
28
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type CheckoutHistoryItem } from '@funkit/api-base';
|
|
1
|
+
import { type CheckoutHistoryItem, type DirectExecution } from '@funkit/api-base';
|
|
2
2
|
import React, { type ReactNode } from 'react';
|
|
3
3
|
import type { Address } from 'viem';
|
|
4
4
|
import { type CheckoutHistoryDepositAddrMap, type CheckoutHistoryStateMap } from '../utils/checkout';
|
|
@@ -40,4 +40,5 @@ export declare function useCheckoutListenerByCheckoutId(checkoutId: string): Pur
|
|
|
40
40
|
export declare const useFunkitPostCheckoutInternal: (depositAddress: Address) => {
|
|
41
41
|
isLoading: boolean;
|
|
42
42
|
checkoutHistoryInfo: CheckoutHistoryItem | undefined;
|
|
43
|
+
directExecutionInfo: DirectExecution | undefined;
|
|
43
44
|
};
|
|
@@ -82,13 +82,6 @@ export declare const useActiveTheme: () => {
|
|
|
82
82
|
buttonIconBackgroundHover: string;
|
|
83
83
|
buttonIconBackgroundPressed: string;
|
|
84
84
|
buttonIconStroke: string;
|
|
85
|
-
buttonBorder: string;
|
|
86
|
-
buttonBorderHover: string;
|
|
87
|
-
buttonBorderActive: string;
|
|
88
|
-
buttonBorderFocused: string;
|
|
89
|
-
buttonBorderTertiary: string;
|
|
90
|
-
buttonBorderHoverTertiary: string;
|
|
91
|
-
buttonBorderActiveTertiary: string;
|
|
92
85
|
buttonBorderFocusedTertiary: string;
|
|
93
86
|
buttonFocusedOutline: string;
|
|
94
87
|
badgeBackgroundSuccess: string;
|
|
@@ -169,6 +162,7 @@ export declare const useActiveTheme: () => {
|
|
|
169
162
|
modalMobile: string;
|
|
170
163
|
modalActionButton: string;
|
|
171
164
|
modalActionButtonMobile: string;
|
|
165
|
+
summaryBox: string;
|
|
172
166
|
};
|
|
173
167
|
shadows: {
|
|
174
168
|
connectButton: string;
|
|
@@ -179,6 +173,7 @@ export declare const useActiveTheme: () => {
|
|
|
179
173
|
notification: string;
|
|
180
174
|
vertexDropdown: string;
|
|
181
175
|
qrCode: string;
|
|
176
|
+
buttonFocusedShadow: string;
|
|
182
177
|
};
|
|
183
178
|
blurs: {
|
|
184
179
|
modalOverlay: string;
|
|
@@ -249,13 +244,6 @@ export declare const useActiveTheme: () => {
|
|
|
249
244
|
buttonIconBackgroundHover: string;
|
|
250
245
|
buttonIconBackgroundPressed: string;
|
|
251
246
|
buttonIconStroke: string;
|
|
252
|
-
buttonBorder: string;
|
|
253
|
-
buttonBorderHover: string;
|
|
254
|
-
buttonBorderActive: string;
|
|
255
|
-
buttonBorderFocused: string;
|
|
256
|
-
buttonBorderTertiary: string;
|
|
257
|
-
buttonBorderHoverTertiary: string;
|
|
258
|
-
buttonBorderActiveTertiary: string;
|
|
259
247
|
buttonBorderFocusedTertiary: string;
|
|
260
248
|
buttonFocusedOutline: string;
|
|
261
249
|
badgeBackgroundSuccess: string;
|
|
@@ -336,6 +324,7 @@ export declare const useActiveTheme: () => {
|
|
|
336
324
|
modalMobile: string;
|
|
337
325
|
modalActionButton: string;
|
|
338
326
|
modalActionButtonMobile: string;
|
|
327
|
+
summaryBox: string;
|
|
339
328
|
};
|
|
340
329
|
shadows: {
|
|
341
330
|
connectButton: string;
|
|
@@ -346,6 +335,7 @@ export declare const useActiveTheme: () => {
|
|
|
346
335
|
notification: string;
|
|
347
336
|
vertexDropdown: string;
|
|
348
337
|
qrCode: string;
|
|
338
|
+
buttonFocusedShadow: string;
|
|
349
339
|
};
|
|
350
340
|
blurs: {
|
|
351
341
|
modalOverlay: string;
|
|
@@ -414,13 +404,6 @@ export declare const useActiveTheme: () => {
|
|
|
414
404
|
buttonIconBackgroundHover: string;
|
|
415
405
|
buttonIconBackgroundPressed: string;
|
|
416
406
|
buttonIconStroke: string;
|
|
417
|
-
buttonBorder: string;
|
|
418
|
-
buttonBorderHover: string;
|
|
419
|
-
buttonBorderActive: string;
|
|
420
|
-
buttonBorderFocused: string;
|
|
421
|
-
buttonBorderTertiary: string;
|
|
422
|
-
buttonBorderHoverTertiary: string;
|
|
423
|
-
buttonBorderActiveTertiary: string;
|
|
424
407
|
buttonBorderFocusedTertiary: string;
|
|
425
408
|
buttonFocusedOutline: string;
|
|
426
409
|
badgeBackgroundSuccess: string;
|
|
@@ -501,6 +484,7 @@ export declare const useActiveTheme: () => {
|
|
|
501
484
|
modalMobile: string;
|
|
502
485
|
modalActionButton: string;
|
|
503
486
|
modalActionButtonMobile: string;
|
|
487
|
+
summaryBox: string;
|
|
504
488
|
};
|
|
505
489
|
shadows: {
|
|
506
490
|
connectButton: string;
|
|
@@ -511,6 +495,7 @@ export declare const useActiveTheme: () => {
|
|
|
511
495
|
notification: string;
|
|
512
496
|
vertexDropdown: string;
|
|
513
497
|
qrCode: string;
|
|
498
|
+
buttonFocusedShadow: string;
|
|
514
499
|
};
|
|
515
500
|
blurs: {
|
|
516
501
|
modalOverlay: string;
|
|
@@ -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
|
};
|
package/dist/themes/baseTheme.js
CHANGED
package/dist/themes/darkTheme.js
CHANGED
package/dist/utils/checkout.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { type Address } from 'viem';
|
|
|
4
4
|
import type { UseConfigReturnType } from 'wagmi';
|
|
5
5
|
import type { ServerCheckoutConfig } from '~/domains/clientMetadata';
|
|
6
6
|
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
|
|
7
|
-
import type { FunkitCheckoutActionParams, FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
|
|
7
|
+
import type { FunkitActiveCheckoutItem, FunkitCheckoutActionParams, FunkitCheckoutConfig } from '../providers/FunkitCheckoutContext';
|
|
8
8
|
export declare const MOONPAY_TIME_ESTIMATE_MS = 120000;
|
|
9
9
|
export declare const MESH_TIME_ESTIMATE_MS = 300000;
|
|
10
10
|
export declare const DUMMY_TRANSFER_PARAMS: {
|
|
@@ -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;
|
|
@@ -122,3 +122,11 @@ export declare function isCheckoutPostActionRequired(config: FunkitCheckoutConfi
|
|
|
122
122
|
* @returns whether we should show the checkout to the user (ie. supported in current sdk version & not cancelled)
|
|
123
123
|
*/
|
|
124
124
|
export declare const isCheckoutValid: (checkout: CheckoutHistoryItem) => boolean;
|
|
125
|
+
/**
|
|
126
|
+
* @returns true if the source and target are the same, a post action is required, is wallet balance, and is for vertex (for now)
|
|
127
|
+
*/
|
|
128
|
+
export declare const isDirectExecutionFlow: ({ checkoutItem, apiKey, }: {
|
|
129
|
+
checkoutItem: FunkitActiveCheckoutItem | null;
|
|
130
|
+
apiKey: string;
|
|
131
|
+
}) => boolean;
|
|
132
|
+
export declare const isCheckoutHistoryDirectExecution: (checkoutId: string) => boolean;
|
|
@@ -58,6 +58,20 @@ 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
|
+
}[];
|
|
61
75
|
};
|
|
62
76
|
enable_token_transfer_universal_deposit_address: {
|
|
63
77
|
type: "boolean";
|
|
@@ -122,4 +136,8 @@ export declare const flagConfig: {
|
|
|
122
136
|
type: "string";
|
|
123
137
|
default_value: string;
|
|
124
138
|
};
|
|
139
|
+
enable_vertex_swap_bypass: {
|
|
140
|
+
type: "boolean";
|
|
141
|
+
default_value: false;
|
|
142
|
+
};
|
|
125
143
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isUserRejectedError(error: unknown): boolean;
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
xdefiWallet
|
|
4
|
+
} from "./chunk-NO7XMBB5.js";
|
|
5
|
+
import {
|
|
6
|
+
zerionWallet
|
|
7
|
+
} from "./chunk-AXWP3GD4.js";
|
|
2
8
|
import {
|
|
3
9
|
zealWallet
|
|
4
10
|
} from "./chunk-JROWU5BP.js";
|
|
5
11
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import {
|
|
9
|
-
zerionWallet
|
|
10
|
-
} from "./chunk-ETTNDQQG.js";
|
|
12
|
+
subWallet
|
|
13
|
+
} from "./chunk-AD2KIJB6.js";
|
|
11
14
|
import {
|
|
12
15
|
tahoWallet
|
|
13
16
|
} from "./chunk-6P2EMPZI.js";
|
|
@@ -16,121 +19,121 @@ import {
|
|
|
16
19
|
} from "./chunk-ABFSXBE6.js";
|
|
17
20
|
import {
|
|
18
21
|
tokenPocketWallet
|
|
19
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-IDKVN5CF.js";
|
|
20
23
|
import {
|
|
21
24
|
tokenaryWallet
|
|
22
25
|
} from "./chunk-SLOIIJGP.js";
|
|
23
26
|
import {
|
|
24
|
-
|
|
25
|
-
} from "./chunk-
|
|
27
|
+
trustWallet
|
|
28
|
+
} from "./chunk-ISIBREBO.js";
|
|
26
29
|
import {
|
|
27
30
|
uniswapWallet
|
|
28
31
|
} from "./chunk-LH7BMNFZ.js";
|
|
29
32
|
import {
|
|
30
33
|
walletConnectWallet
|
|
31
34
|
} from "./chunk-NP5QGWNL.js";
|
|
32
|
-
import {
|
|
33
|
-
xdefiWallet
|
|
34
|
-
} from "./chunk-NO7XMBB5.js";
|
|
35
35
|
import {
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-ZSVTX6EK.js";
|
|
38
|
+
import {
|
|
39
|
+
rabbyWallet
|
|
40
|
+
} from "./chunk-BVX4XGNP.js";
|
|
38
41
|
import {
|
|
39
42
|
rainbowWallet
|
|
40
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-2UCNRD7H.js";
|
|
41
44
|
import {
|
|
42
45
|
ramperWallet
|
|
43
46
|
} from "./chunk-PIUNLQJG.js";
|
|
44
47
|
import {
|
|
45
48
|
roninWallet
|
|
46
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-63YLN6R5.js";
|
|
47
50
|
import {
|
|
48
51
|
safeWallet
|
|
49
52
|
} from "./chunk-BQQQL6UD.js";
|
|
50
|
-
import {
|
|
51
|
-
rabbyWallet
|
|
52
|
-
} from "./chunk-BVX4XGNP.js";
|
|
53
53
|
import {
|
|
54
54
|
safeheronWallet
|
|
55
55
|
} from "./chunk-R6RWZRFF.js";
|
|
56
56
|
import {
|
|
57
57
|
safepalWallet
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-MSFKSQBY.js";
|
|
59
|
+
import {
|
|
60
|
+
kresusWallet
|
|
61
|
+
} from "./chunk-MJXPRJZT.js";
|
|
62
|
+
import {
|
|
63
|
+
metaMaskWallet
|
|
64
|
+
} from "./chunk-G73C6P5P.js";
|
|
59
65
|
import {
|
|
60
66
|
mewWallet
|
|
61
67
|
} from "./chunk-V57WLZEE.js";
|
|
62
68
|
import {
|
|
63
69
|
oktoWallet
|
|
64
70
|
} from "./chunk-ADIXAKUL.js";
|
|
65
|
-
import {
|
|
66
|
-
metaMaskWallet
|
|
67
|
-
} from "./chunk-N2NIIUW6.js";
|
|
68
71
|
import {
|
|
69
72
|
okxWallet
|
|
70
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-4WEHDI4Y.js";
|
|
71
74
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
75
|
+
omniWallet
|
|
76
|
+
} from "./chunk-7CUY5G6R.js";
|
|
74
77
|
import {
|
|
75
78
|
oneInchWallet
|
|
76
79
|
} from "./chunk-OESTDX6I.js";
|
|
77
80
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-4AD7VI2P.js";
|
|
80
83
|
import {
|
|
81
84
|
foxWallet
|
|
82
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-LMZMXEXL.js";
|
|
83
86
|
import {
|
|
84
87
|
frameWallet
|
|
85
88
|
} from "./chunk-ZMYVTWDF.js";
|
|
86
89
|
import {
|
|
87
90
|
frontierWallet
|
|
88
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-3S2U24BJ.js";
|
|
92
|
+
import {
|
|
93
|
+
gateWallet
|
|
94
|
+
} from "./chunk-GSOYKKIS.js";
|
|
89
95
|
import {
|
|
90
96
|
imTokenWallet
|
|
91
97
|
} from "./chunk-COZ7MIQS.js";
|
|
92
98
|
import {
|
|
93
99
|
injectedWallet
|
|
94
100
|
} from "./chunk-VCVVV2K7.js";
|
|
95
|
-
import {
|
|
96
|
-
gateWallet
|
|
97
|
-
} from "./chunk-3NC26XLM.js";
|
|
98
|
-
import {
|
|
99
|
-
kresusWallet
|
|
100
|
-
} from "./chunk-MJXPRJZT.js";
|
|
101
101
|
import {
|
|
102
102
|
ledgerWallet
|
|
103
103
|
} from "./chunk-BRBKM4PW.js";
|
|
104
104
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-6ONTSPEY.js";
|
|
107
|
+
import {
|
|
108
|
+
clvWallet
|
|
109
|
+
} from "./chunk-KR6JBW5E.js";
|
|
107
110
|
import {
|
|
108
111
|
coin98Wallet
|
|
109
|
-
} from "./chunk-
|
|
112
|
+
} from "./chunk-DTRYS3MO.js";
|
|
110
113
|
import {
|
|
111
|
-
|
|
112
|
-
} from "./chunk-
|
|
114
|
+
coinbaseWallet
|
|
115
|
+
} from "./chunk-H4IRCEZN.js";
|
|
113
116
|
import {
|
|
114
117
|
coreWallet
|
|
115
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-HBA36GW3.js";
|
|
116
119
|
import {
|
|
117
|
-
|
|
118
|
-
} from "./chunk-
|
|
120
|
+
desigWallet
|
|
121
|
+
} from "./chunk-CTU6JCOK.js";
|
|
119
122
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
123
|
+
dawnWallet
|
|
124
|
+
} from "./chunk-LN7OD5EC.js";
|
|
122
125
|
import {
|
|
123
126
|
enkryptWallet
|
|
124
127
|
} from "./chunk-SJTXS4ZW.js";
|
|
125
128
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
129
|
+
argentWallet
|
|
130
|
+
} from "./chunk-WSQ2YJO2.js";
|
|
128
131
|
import {
|
|
129
132
|
bifrostWallet
|
|
130
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-W6N74MS3.js";
|
|
131
134
|
import {
|
|
132
|
-
|
|
133
|
-
} from "./chunk-
|
|
135
|
+
bitgetWallet
|
|
136
|
+
} from "./chunk-A5APNTGL.js";
|
|
134
137
|
import {
|
|
135
138
|
bitskiWallet
|
|
136
139
|
} from "./chunk-P74YPRF6.js";
|
|
@@ -140,14 +143,11 @@ import {
|
|
|
140
143
|
import {
|
|
141
144
|
bloomWallet
|
|
142
145
|
} from "./chunk-S27IADFU.js";
|
|
146
|
+
import "./chunk-23WIEY36.js";
|
|
143
147
|
import {
|
|
144
|
-
|
|
145
|
-
} from "./chunk-
|
|
146
|
-
import {
|
|
147
|
-
clvWallet
|
|
148
|
-
} from "./chunk-LEXSM5KI.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,
|