@funkit/connect 5.1.3 → 5.2.0
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 +34 -0
- package/dist/{chunk-A7G4HZZY.js → chunk-2C7D5NQG.js} +19 -4
- package/dist/{chunk-L55ALBJE.js → chunk-PKXUTXYG.js} +4 -4
- package/dist/{chunk-IDAA2OY6.js → chunk-QBCQK5KX.js} +4 -4
- package/dist/components/Box/Box.d.ts +29 -29
- package/dist/components/Dropdown/ReceiveTokenDropdown.d.ts +3 -3
- package/dist/components/FunBadge/FunBadge.d.ts +3 -3
- package/dist/components/FunButton/FunRedirectButton.d.ts +6 -0
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryDetail.d.ts +3 -1
- package/dist/components/FunInput/FunTwoFaInput.d.ts +2 -2
- package/dist/components/FunNotification/FunNotification.d.ts +2 -6
- package/dist/components/NewTokenDepositAlert/NewTokenDepositAlert.d.ts +7 -0
- package/dist/components/YouPayYouReceive/YouPayYouReceive.d.ts +2 -1
- package/dist/consts/funkit.d.ts +0 -5
- package/dist/css/sprinkles.css.d.ts +41 -35
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
- package/dist/hooks/useRelayBypass.d.ts +12 -0
- package/dist/index.css +2432 -2423
- package/dist/index.js +798 -743
- package/dist/modals/CheckoutModal/stepTransition.d.ts +3 -1
- package/dist/providers/FunkitCheckoutContext.d.ts +5 -2
- package/dist/providers/FunkitThemeProvider.d.ts +18 -9
- 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 +11 -9
- package/dist/utils/consts.d.ts +1 -0
- package/dist/utils/flags/config.d.ts +20 -4
- package/dist/utils/flags/types.d.ts +7 -0
- package/dist/wallets/walletConnectors/funkitConnectWallet/funkitConnectWallet.js +0 -23
- package/dist/wallets/walletConnectors/index.js +53 -53
- package/package.json +7 -6
- package/dist/components/SolanaDepositAlert/SolanaDepositAlert.d.ts +0 -6
|
@@ -98,7 +98,9 @@ export declare function useCheckoutModalTransition(checkoutItem: FunkitActiveChe
|
|
|
98
98
|
animation: import("~/hooks/useAnimatedNavigation").AnimationState;
|
|
99
99
|
modalState: CheckoutModalState<FunCheckoutStep>;
|
|
100
100
|
onBack: () => void;
|
|
101
|
-
onCloseWrapper: (
|
|
101
|
+
onCloseWrapper: (options?: {
|
|
102
|
+
isNewDeposit?: boolean;
|
|
103
|
+
}) => void;
|
|
102
104
|
onNext: (payload: NextPayload) => void;
|
|
103
105
|
/** Only use as a last resort. Prefer next/back for proper navigation */
|
|
104
106
|
onStepChange: (nextState: CheckoutModalState) => void;
|
|
@@ -19,7 +19,7 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
|
|
|
19
19
|
generateActionsParams?: (targetAssetAmount: number, config?: {
|
|
20
20
|
targetAsset: Address;
|
|
21
21
|
targetChain: string;
|
|
22
|
-
}) => FunkitCheckoutActionParams[]
|
|
22
|
+
}) => Promise<FunkitCheckoutActionParams[]>;
|
|
23
23
|
/** Custom recipient address of the checkout. If specified, a different checkout flow will be executed. It is not recommended to set this unless the Fun.xyz team advises it. **/
|
|
24
24
|
customRecipient?: FunAddress;
|
|
25
25
|
/** ****************************************
|
|
@@ -49,6 +49,9 @@ export interface FunkitCheckoutValidationResult {
|
|
|
49
49
|
isValid: boolean;
|
|
50
50
|
message: string;
|
|
51
51
|
}
|
|
52
|
+
export interface FunkitCheckoutOnCloseResult {
|
|
53
|
+
isNewDeposit: boolean;
|
|
54
|
+
}
|
|
52
55
|
export type FunkitCheckoutResult = {
|
|
53
56
|
type: 'error' | 'success';
|
|
54
57
|
message: string;
|
|
@@ -60,7 +63,7 @@ export interface UseFunkitCheckoutProps {
|
|
|
60
63
|
/** @optional fires when the checkout modal is opened **/
|
|
61
64
|
onOpen?: () => void;
|
|
62
65
|
/** @optional fires when the checkout modal is closed **/
|
|
63
|
-
onClose?: () => void;
|
|
66
|
+
onClose?: (result: FunkitCheckoutOnCloseResult) => void;
|
|
64
67
|
/** @optional fires when checkout config is done validating **/
|
|
65
68
|
onValidation?: (result: FunkitCheckoutValidationResult) => void;
|
|
66
69
|
/** @optional fires when a checkout quote is received **/
|
|
@@ -88,9 +88,9 @@ export declare const useActiveTheme: () => {
|
|
|
88
88
|
badgeBackgroundSuccess: string;
|
|
89
89
|
badgeBorderSuccess: string;
|
|
90
90
|
badgeTextSuccess: string;
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
91
|
+
newBadgeBackground: string;
|
|
92
|
+
newBadgeBorder: string;
|
|
93
|
+
newBadgeText: string;
|
|
94
94
|
inputAmountQuickOptionBaseBackground: string;
|
|
95
95
|
inputAmountQuickOptionHoverBackground: string;
|
|
96
96
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -169,6 +169,9 @@ export declare const useActiveTheme: () => {
|
|
|
169
169
|
modalActionButton: string;
|
|
170
170
|
modalActionButtonMobile: string;
|
|
171
171
|
summaryBox: string;
|
|
172
|
+
youPayYouReceive: string;
|
|
173
|
+
inputAmountSwitcher: string;
|
|
174
|
+
qrCode: string;
|
|
172
175
|
};
|
|
173
176
|
shadows: {
|
|
174
177
|
connectButton: string;
|
|
@@ -256,9 +259,9 @@ export declare const useActiveTheme: () => {
|
|
|
256
259
|
badgeBackgroundSuccess: string;
|
|
257
260
|
badgeBorderSuccess: string;
|
|
258
261
|
badgeTextSuccess: string;
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
+
newBadgeBackground: string;
|
|
263
|
+
newBadgeBorder: string;
|
|
264
|
+
newBadgeText: string;
|
|
262
265
|
inputAmountQuickOptionBaseBackground: string;
|
|
263
266
|
inputAmountQuickOptionHoverBackground: string;
|
|
264
267
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -337,6 +340,9 @@ export declare const useActiveTheme: () => {
|
|
|
337
340
|
modalActionButton: string;
|
|
338
341
|
modalActionButtonMobile: string;
|
|
339
342
|
summaryBox: string;
|
|
343
|
+
youPayYouReceive: string;
|
|
344
|
+
inputAmountSwitcher: string;
|
|
345
|
+
qrCode: string;
|
|
340
346
|
};
|
|
341
347
|
shadows: {
|
|
342
348
|
connectButton: string;
|
|
@@ -422,9 +428,9 @@ export declare const useActiveTheme: () => {
|
|
|
422
428
|
badgeBackgroundSuccess: string;
|
|
423
429
|
badgeBorderSuccess: string;
|
|
424
430
|
badgeTextSuccess: string;
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
431
|
+
newBadgeBackground: string;
|
|
432
|
+
newBadgeBorder: string;
|
|
433
|
+
newBadgeText: string;
|
|
428
434
|
inputAmountQuickOptionBaseBackground: string;
|
|
429
435
|
inputAmountQuickOptionHoverBackground: string;
|
|
430
436
|
inputAmountQuickOptionActiveBackground: string;
|
|
@@ -503,6 +509,9 @@ export declare const useActiveTheme: () => {
|
|
|
503
509
|
modalActionButton: string;
|
|
504
510
|
modalActionButtonMobile: string;
|
|
505
511
|
summaryBox: string;
|
|
512
|
+
youPayYouReceive: string;
|
|
513
|
+
inputAmountSwitcher: string;
|
|
514
|
+
qrCode: string;
|
|
506
515
|
};
|
|
507
516
|
shadows: {
|
|
508
517
|
connectButton: 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;
|
|
99
101
|
isError: false;
|
|
100
102
|
isPending: false;
|
|
101
103
|
isSuccess: false;
|
|
102
104
|
failureCount: number;
|
|
103
105
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
104
|
-
isPaused: boolean;
|
|
105
106
|
variables: undefined;
|
|
106
107
|
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;
|
|
117
119
|
isError: false;
|
|
118
120
|
isPending: true;
|
|
119
121
|
isSuccess: false;
|
|
120
122
|
failureCount: number;
|
|
121
123
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
122
|
-
isPaused: boolean;
|
|
123
124
|
variables: import("wagmi/query").DisconnectVariables;
|
|
124
125
|
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;
|
|
135
137
|
isError: true;
|
|
136
138
|
isPending: false;
|
|
137
139
|
isSuccess: false;
|
|
138
140
|
failureCount: number;
|
|
139
141
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
140
|
-
isPaused: boolean;
|
|
141
142
|
variables: import("wagmi/query").DisconnectVariables;
|
|
142
143
|
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;
|
|
153
155
|
isError: false;
|
|
154
156
|
isPending: false;
|
|
155
157
|
isSuccess: true;
|
|
156
158
|
failureCount: number;
|
|
157
159
|
failureReason: import("@wagmi/core").DisconnectErrorType | null;
|
|
158
|
-
isPaused: boolean;
|
|
159
160
|
variables: import("wagmi/query").DisconnectVariables;
|
|
160
161
|
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
|
@@ -11,19 +11,20 @@ export declare const DUMMY_TRANSFER_PARAMS: {
|
|
|
11
11
|
toAddress: "0x000000000000000000000000000000000000dEaD";
|
|
12
12
|
tokenAmount: number;
|
|
13
13
|
};
|
|
14
|
-
|
|
15
|
-
* Validates the checkout configuration.
|
|
16
|
-
* @param config - The checkout configuration to validate.
|
|
17
|
-
* @returns An object indicating whether the configuration is valid and a message if it is not.
|
|
18
|
-
*/
|
|
19
|
-
export declare function validateCheckoutConfig(config: Partial<FunkitCheckoutConfig>): {
|
|
14
|
+
type ValidateCheckoutConfigReturn = Promise<{
|
|
20
15
|
config: FunkitCheckoutConfig;
|
|
21
16
|
isValid: true;
|
|
22
17
|
message: string;
|
|
23
18
|
} | {
|
|
24
19
|
isValid: false;
|
|
25
20
|
message: string;
|
|
26
|
-
}
|
|
21
|
+
}>;
|
|
22
|
+
/**
|
|
23
|
+
* Validates the checkout configuration.
|
|
24
|
+
* @param config - The checkout configuration to validate.
|
|
25
|
+
* @returns An object indicating whether the configuration is valid and a message if it is not.
|
|
26
|
+
*/
|
|
27
|
+
export declare function validateCheckoutConfig(config: Partial<FunkitCheckoutConfig>): ValidateCheckoutConfigReturn;
|
|
27
28
|
export declare const hasSufficientBalance: (wagmiConfig: UseConfigReturnType, walletAddress: string, tokenAddress: string, tokenChainId: string, requiredAssetAmount: number) => Promise<{
|
|
28
29
|
balance: number;
|
|
29
30
|
result: boolean;
|
|
@@ -51,6 +52,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
|
|
|
51
52
|
bypassInit: boolean;
|
|
52
53
|
apiKey?: string;
|
|
53
54
|
nonce?: bigint | undefined;
|
|
55
|
+
logger?: import("@funkit/api-base").Logger | undefined;
|
|
54
56
|
fee?: {
|
|
55
57
|
token?: string;
|
|
56
58
|
amount?: number;
|
|
@@ -58,7 +60,6 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
|
|
|
58
60
|
recipient: Address;
|
|
59
61
|
} | undefined;
|
|
60
62
|
skipDBAction?: boolean | undefined;
|
|
61
|
-
logger?: import("@funkit/api-base").Logger | undefined;
|
|
62
63
|
};
|
|
63
64
|
export type TokenInfo = {
|
|
64
65
|
symbol: string;
|
|
@@ -112,7 +113,7 @@ export declare function getCheckoutItemDisplay({ checkoutConfig, hideAmount, }:
|
|
|
112
113
|
*/
|
|
113
114
|
export declare function getMaxTargetAssetAmountEstimate(sourceAssetBalance: number, config: FunkitCheckoutConfig, quoteResult: FunkitCheckoutQuoteResult): number;
|
|
114
115
|
export declare function getTokenDecimals(wagmiConfig: Config, chainId: string, tokenAddress: Address): Promise<number>;
|
|
115
|
-
export declare function evaluateCheckoutGenerateActionsParams(config: FunkitCheckoutConfig | ServerCheckoutConfig): FunkitCheckoutActionParams[]
|
|
116
|
+
export declare function evaluateCheckoutGenerateActionsParams(config: FunkitCheckoutConfig | ServerCheckoutConfig): Promise<FunkitCheckoutActionParams[]>;
|
|
116
117
|
export declare function isCheckoutCrFlow(config: FunkitCheckoutConfig): boolean;
|
|
117
118
|
/**
|
|
118
119
|
* @param config can be either be a config from live checkoutItem OR from checkout history's clientMetadata
|
|
@@ -130,3 +131,4 @@ export declare const isDirectExecutionFlow: ({ checkoutItem, apiKey, }: {
|
|
|
130
131
|
apiKey: string;
|
|
131
132
|
}) => boolean;
|
|
132
133
|
export declare const isCheckoutHistoryDirectExecution: (checkoutId: string) => boolean;
|
|
134
|
+
export {};
|
package/dist/utils/consts.d.ts
CHANGED
|
@@ -122,10 +122,6 @@ export declare const flagConfig: {
|
|
|
122
122
|
type: "string";
|
|
123
123
|
default_value: string;
|
|
124
124
|
};
|
|
125
|
-
enable_vertex_swap_bypass: {
|
|
126
|
-
type: "boolean";
|
|
127
|
-
default_value: true;
|
|
128
|
-
};
|
|
129
125
|
display_solana_new_badge: {
|
|
130
126
|
type: "boolean";
|
|
131
127
|
default_value: true;
|
|
@@ -134,4 +130,24 @@ export declare const flagConfig: {
|
|
|
134
130
|
type: "boolean";
|
|
135
131
|
default_value: true;
|
|
136
132
|
};
|
|
133
|
+
token_transfer_new_tokens: {
|
|
134
|
+
type: "string";
|
|
135
|
+
default_value: string;
|
|
136
|
+
};
|
|
137
|
+
new_token_asset_selection_banner: {
|
|
138
|
+
type: "string";
|
|
139
|
+
default_value: string;
|
|
140
|
+
};
|
|
141
|
+
is_relay_bypass_enabled: {
|
|
142
|
+
type: "boolean";
|
|
143
|
+
default_value: false;
|
|
144
|
+
};
|
|
145
|
+
relay_bypass_source_chains_and_assets: {
|
|
146
|
+
type: "string";
|
|
147
|
+
default_value: string;
|
|
148
|
+
};
|
|
149
|
+
relay_bypass_target_chains_and_assets: {
|
|
150
|
+
type: "string";
|
|
151
|
+
default_value: string;
|
|
152
|
+
};
|
|
137
153
|
};
|
|
@@ -36,4 +36,11 @@ export type Condition = {
|
|
|
36
36
|
values: string[];
|
|
37
37
|
};
|
|
38
38
|
export type AbstractFlags = Record<string, FlagConfig>;
|
|
39
|
+
export type AssetSelectionBannerConfig = {
|
|
40
|
+
chainId: number;
|
|
41
|
+
symbol: string;
|
|
42
|
+
name: string;
|
|
43
|
+
isChainNew?: boolean;
|
|
44
|
+
};
|
|
45
|
+
export type TokenTransferNewBadgeConfig = Record<number, string[]>;
|
|
39
46
|
export {};
|
|
@@ -5,31 +5,8 @@ import { funkitWagmiConnectorWallet } from "@funkit/wagmi-tools";
|
|
|
5
5
|
import { createConnector } from "wagmi";
|
|
6
6
|
|
|
7
7
|
// src/consts/funkit.ts
|
|
8
|
-
import { CheckoutState } from "@funkit/api-base";
|
|
9
8
|
import { FUNKIT_CONNECT_CHECKOUT_NATIVE_CURRENCY_ADDRESS } from "@funkit/chains";
|
|
10
9
|
var FUNKIT_CONNECT_WALLET_ID = "funkitConnectWallet";
|
|
11
|
-
var FROM_PROGRESS_CHECKOUT_STATES = [
|
|
12
|
-
CheckoutState.FROM_UNFUNDED,
|
|
13
|
-
CheckoutState.FROM_FUNDED,
|
|
14
|
-
CheckoutState.FROM_POOLED
|
|
15
|
-
];
|
|
16
|
-
var TO_PROGRESS_CHECKOUT_STATES = [
|
|
17
|
-
CheckoutState.TO_UNFUNDED,
|
|
18
|
-
CheckoutState.TO_FUNDED,
|
|
19
|
-
CheckoutState.TO_POOLED,
|
|
20
|
-
CheckoutState.TO_READY,
|
|
21
|
-
CheckoutState.PENDING_RECEIVAL
|
|
22
|
-
];
|
|
23
|
-
var IN_PROGRESS_CHECKOUT_STATES = [
|
|
24
|
-
...TO_PROGRESS_CHECKOUT_STATES,
|
|
25
|
-
...FROM_PROGRESS_CHECKOUT_STATES
|
|
26
|
-
];
|
|
27
|
-
var TERMINAL_CHECKOUT_STATES = [
|
|
28
|
-
CheckoutState.EXPIRED,
|
|
29
|
-
CheckoutState.CHECKOUT_ERROR,
|
|
30
|
-
CheckoutState.COMPLETED,
|
|
31
|
-
CheckoutState.CANCELLED
|
|
32
|
-
];
|
|
33
10
|
|
|
34
11
|
// src/wallets/walletConnectors/funkitConnectWallet/funkitConnectWallet.ts
|
|
35
12
|
var funkitConnectWallet = () => {
|
|
@@ -1,31 +1,28 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import {
|
|
6
|
-
zealWallet
|
|
7
|
-
} from "./chunk-JROWU5BP.js";
|
|
3
|
+
uniswapWallet
|
|
4
|
+
} from "./chunk-LH7BMNFZ.js";
|
|
8
5
|
import {
|
|
9
6
|
zerionWallet
|
|
10
7
|
} from "./chunk-ETTNDQQG.js";
|
|
11
8
|
import {
|
|
12
|
-
|
|
13
|
-
} from "./chunk-
|
|
9
|
+
walletConnectWallet
|
|
10
|
+
} from "./chunk-NP5QGWNL.js";
|
|
14
11
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
12
|
+
safepalWallet
|
|
13
|
+
} from "./chunk-6LPM6LUQ.js";
|
|
17
14
|
import {
|
|
18
15
|
talismanWallet
|
|
19
16
|
} from "./chunk-ABFSXBE6.js";
|
|
17
|
+
import {
|
|
18
|
+
tahoWallet
|
|
19
|
+
} from "./chunk-6P2EMPZI.js";
|
|
20
20
|
import {
|
|
21
21
|
tokenaryWallet
|
|
22
22
|
} from "./chunk-SLOIIJGP.js";
|
|
23
23
|
import {
|
|
24
24
|
tokenPocketWallet
|
|
25
25
|
} from "./chunk-FRGSRLTS.js";
|
|
26
|
-
import {
|
|
27
|
-
uniswapWallet
|
|
28
|
-
} from "./chunk-LH7BMNFZ.js";
|
|
29
26
|
import {
|
|
30
27
|
trustWallet
|
|
31
28
|
} from "./chunk-IPOC2VJX.js";
|
|
@@ -33,44 +30,41 @@ import {
|
|
|
33
30
|
xdefiWallet
|
|
34
31
|
} from "./chunk-NO7XMBB5.js";
|
|
35
32
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
33
|
+
zealWallet
|
|
34
|
+
} from "./chunk-JROWU5BP.js";
|
|
38
35
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
36
|
+
safeWallet
|
|
37
|
+
} from "./chunk-BQQQL6UD.js";
|
|
41
38
|
import {
|
|
42
|
-
|
|
43
|
-
} from "./chunk-
|
|
39
|
+
oneInchWallet
|
|
40
|
+
} from "./chunk-OESTDX6I.js";
|
|
44
41
|
import {
|
|
45
42
|
ramperWallet
|
|
46
43
|
} from "./chunk-PIUNLQJG.js";
|
|
47
|
-
import {
|
|
48
|
-
safepalWallet
|
|
49
|
-
} from "./chunk-6LPM6LUQ.js";
|
|
50
44
|
import {
|
|
51
45
|
roninWallet
|
|
52
46
|
} from "./chunk-25VW5TZP.js";
|
|
53
47
|
import {
|
|
54
|
-
|
|
55
|
-
} from "./chunk-
|
|
48
|
+
oneKeyWallet
|
|
49
|
+
} from "./chunk-4AD7VI2P.js";
|
|
50
|
+
import {
|
|
51
|
+
rainbowWallet
|
|
52
|
+
} from "./chunk-MOOBCMMB.js";
|
|
56
53
|
import {
|
|
57
54
|
safeheronWallet
|
|
58
55
|
} from "./chunk-R6RWZRFF.js";
|
|
59
56
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
57
|
+
subWallet
|
|
58
|
+
} from "./chunk-4UM4GTKZ.js";
|
|
62
59
|
import {
|
|
63
|
-
|
|
64
|
-
} from "./chunk-
|
|
60
|
+
kresusWallet
|
|
61
|
+
} from "./chunk-MJXPRJZT.js";
|
|
65
62
|
import {
|
|
66
63
|
metaMaskWallet
|
|
67
64
|
} from "./chunk-N2NIIUW6.js";
|
|
68
65
|
import {
|
|
69
66
|
okxWallet
|
|
70
67
|
} from "./chunk-3U3BMEH5.js";
|
|
71
|
-
import {
|
|
72
|
-
oneInchWallet
|
|
73
|
-
} from "./chunk-OESTDX6I.js";
|
|
74
68
|
import {
|
|
75
69
|
oktoWallet
|
|
76
70
|
} from "./chunk-ADIXAKUL.js";
|
|
@@ -78,14 +72,17 @@ import {
|
|
|
78
72
|
omniWallet
|
|
79
73
|
} from "./chunk-7CUY5G6R.js";
|
|
80
74
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
75
|
+
phantomWallet
|
|
76
|
+
} from "./chunk-ZSVTX6EK.js";
|
|
83
77
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
78
|
+
mewWallet
|
|
79
|
+
} from "./chunk-V57WLZEE.js";
|
|
86
80
|
import {
|
|
87
|
-
|
|
88
|
-
} from "./chunk-
|
|
81
|
+
rabbyWallet
|
|
82
|
+
} from "./chunk-BVX4XGNP.js";
|
|
83
|
+
import {
|
|
84
|
+
coinbaseWallet
|
|
85
|
+
} from "./chunk-H4IRCEZN.js";
|
|
89
86
|
import {
|
|
90
87
|
frontierWallet
|
|
91
88
|
} from "./chunk-HKV7EMYZ.js";
|
|
@@ -98,55 +95,58 @@ import {
|
|
|
98
95
|
import {
|
|
99
96
|
injectedWallet
|
|
100
97
|
} from "./chunk-VCVVV2K7.js";
|
|
101
|
-
import {
|
|
102
|
-
kresusWallet
|
|
103
|
-
} from "./chunk-MJXPRJZT.js";
|
|
104
98
|
import {
|
|
105
99
|
bybitWallet
|
|
106
100
|
} from "./chunk-W5O4YSZN.js";
|
|
107
101
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
102
|
+
ledgerWallet
|
|
103
|
+
} from "./chunk-BRBKM4PW.js";
|
|
110
104
|
import {
|
|
111
105
|
coin98Wallet
|
|
112
106
|
} from "./chunk-KFFJPS5R.js";
|
|
113
107
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
116
|
-
import {
|
|
117
|
-
desigWallet
|
|
118
|
-
} from "./chunk-CTU6JCOK.js";
|
|
108
|
+
clvWallet
|
|
109
|
+
} from "./chunk-LEXSM5KI.js";
|
|
119
110
|
import {
|
|
120
111
|
coreWallet
|
|
121
112
|
} from "./chunk-JXP2QPW7.js";
|
|
122
113
|
import {
|
|
123
114
|
dawnWallet
|
|
124
115
|
} from "./chunk-LN7OD5EC.js";
|
|
116
|
+
import {
|
|
117
|
+
desigWallet
|
|
118
|
+
} from "./chunk-CTU6JCOK.js";
|
|
125
119
|
import {
|
|
126
120
|
enkryptWallet
|
|
127
121
|
} from "./chunk-SJTXS4ZW.js";
|
|
128
122
|
import {
|
|
129
|
-
|
|
130
|
-
} from "./chunk-
|
|
123
|
+
foxWallet
|
|
124
|
+
} from "./chunk-XYBEMO3C.js";
|
|
125
|
+
import {
|
|
126
|
+
frameWallet
|
|
127
|
+
} from "./chunk-ZMYVTWDF.js";
|
|
131
128
|
import {
|
|
132
129
|
bitgetWallet
|
|
133
130
|
} from "./chunk-7GSNBOD3.js";
|
|
131
|
+
import {
|
|
132
|
+
argentWallet
|
|
133
|
+
} from "./chunk-WSQ2YJO2.js";
|
|
134
134
|
import {
|
|
135
135
|
bifrostWallet
|
|
136
136
|
} from "./chunk-545L7Y4M.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-P74YPRF6.js";
|
|
140
|
-
import {
|
|
141
|
-
bitverseWallet
|
|
142
|
-
} from "./chunk-3HZRRP4Y.js";
|
|
143
140
|
import {
|
|
144
141
|
bloomWallet
|
|
145
142
|
} from "./chunk-S27IADFU.js";
|
|
146
143
|
import {
|
|
147
|
-
|
|
148
|
-
} from "./chunk-
|
|
144
|
+
braveWallet
|
|
145
|
+
} from "./chunk-PB254NQ4.js";
|
|
149
146
|
import "./chunk-WRA2DVJ7.js";
|
|
147
|
+
import {
|
|
148
|
+
bitverseWallet
|
|
149
|
+
} from "./chunk-3HZRRP4Y.js";
|
|
150
150
|
import "./chunk-23WIEY36.js";
|
|
151
151
|
export {
|
|
152
152
|
argentWallet,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"wagmi": "2.x"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@aws-sdk/client-s3": "
|
|
47
|
+
"@aws-sdk/client-s3": "3.645.0",
|
|
48
|
+
"@aws-sdk/client-cloudfront": "3.645.0",
|
|
48
49
|
"@chromatic-com/storybook": "^3.2.6",
|
|
49
50
|
"@meshconnect/node-api": "2.0.14",
|
|
50
51
|
"@storybook/addon-essentials": "^8.6.7",
|
|
@@ -90,11 +91,11 @@
|
|
|
90
91
|
"react-virtuoso": "4.10.1",
|
|
91
92
|
"ua-parser-js": "^1.0.37",
|
|
92
93
|
"uuid": "^9.0.1",
|
|
93
|
-
"@funkit/api-base": "1.7.
|
|
94
|
+
"@funkit/api-base": "1.7.1",
|
|
95
|
+
"@funkit/core": "2.3.15",
|
|
94
96
|
"@funkit/chains": "0.2.1",
|
|
95
|
-
"@funkit/utils": "1.0.
|
|
96
|
-
"@funkit/
|
|
97
|
-
"@funkit/wagmi-tools": "3.0.36"
|
|
97
|
+
"@funkit/utils": "1.0.11",
|
|
98
|
+
"@funkit/wagmi-tools": "3.0.37"
|
|
98
99
|
},
|
|
99
100
|
"repository": {
|
|
100
101
|
"type": "git",
|