@funkit/connect 6.14.9 → 6.14.11
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 +24 -0
- package/dist/components/FunCheckoutHistory/FunDirectExecutionHistoryDetail.d.ts +2 -1
- package/dist/components/YouPayYouReceive/YouPayYouReceive.d.ts +4 -1
- package/dist/domains/bridge.d.ts +3 -1
- package/dist/hooks/queries/useRecentDirectExecutions.d.ts +9 -1
- package/dist/hooks/track/WithdrawModalEvent.d.ts +4 -0
- package/dist/hooks/track/useTrack.d.ts +3 -1
- package/dist/hooks/useCheckoutDirectExecutionHistory.d.ts +10 -0
- package/dist/index.js +1137 -929
- package/dist/modals/CheckoutModal/FunCheckoutStep.d.ts +1 -0
- package/dist/modals/CheckoutModal/InputAmount/InputAmount.d.ts +2 -1
- package/dist/modals/CheckoutModal/MeldCurrencySelect/utils.d.ts +1 -0
- package/dist/modals/CheckoutModal/MeldRedirect/MeldRedirect.d.ts +14 -0
- package/dist/modals/CheckoutModal/TransferToken/DirectExecutionNotification.d.ts +2 -2
- package/dist/modals/CheckoutModal/TransferToken/types.d.ts +3 -2
- package/dist/modals/CheckoutModal/stepTransition.d.ts +3 -0
- package/dist/providers/FunkitCheckoutContext.d.ts +1 -1
- package/dist/providers/FunkitCheckoutContext.track.d.ts +4 -3
- package/dist/utils/directExecution.d.ts +1 -0
- package/dist/utils/flags/config.d.ts +11 -10
- package/dist/utils/safeJSON.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 +57 -57
- 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 +4 -4
|
@@ -15,6 +15,7 @@ export declare enum FunCheckoutStep {
|
|
|
15
15
|
FIAT_ACCOUNT_DETAIL = "fiat_account_detail",
|
|
16
16
|
ERROR_SCREEN = "error_screen",
|
|
17
17
|
MELD_QUOTES = "meld_quotes",
|
|
18
|
+
MELD_REDIRECT = "meld_redirect",
|
|
18
19
|
MELD_CURRENCY_SELECT = "meld_currency_select",
|
|
19
20
|
DIRECT_EXECUTION_NOTIF_CENTER = "direct_execution_notif_center"
|
|
20
21
|
}
|
|
@@ -12,7 +12,8 @@ export type InputAmountNext = Record<string, never> | {
|
|
|
12
12
|
fiatAmount: number | undefined;
|
|
13
13
|
fiatCurrency?: string;
|
|
14
14
|
provider?: MeldServiceProvider;
|
|
15
|
-
|
|
15
|
+
quote?: MeldQuote;
|
|
16
|
+
nextStep?: FunCheckoutStep.SOURCE_CHANGE | FunCheckoutStep.MELD_CURRENCY_SELECT | FunCheckoutStep.MELD_QUOTES | FunCheckoutStep.MELD_REDIRECT;
|
|
16
17
|
};
|
|
17
18
|
export declare const InputAmountInfo: ModalStepInfo<FunCheckoutStep.INPUT_AMOUNT>;
|
|
18
19
|
export declare function InputAmount(props: ModalStepComponentProps<FunCheckoutStep.INPUT_AMOUNT>): React.JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getFlagEmoji: (currencyCode: string) => string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { MeldQuote } from '@funkit/api-base';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { PaymentMethodCardInfo } from '~/domains/paymentMethods';
|
|
4
|
+
import { type CheckoutModalCommonState, FunCheckoutStep, type ModalStepComponentProps, type ModalStepInfo } from '../stepTransition';
|
|
5
|
+
export type MeldRedirectState = CheckoutModalCommonState & {
|
|
6
|
+
paymentMethodInfo: PaymentMethodCardInfo;
|
|
7
|
+
/** Checkout amount in fiat */
|
|
8
|
+
fiatAmount: number | undefined;
|
|
9
|
+
fiatCurrency: string | undefined;
|
|
10
|
+
quote: MeldQuote;
|
|
11
|
+
};
|
|
12
|
+
export type MeldRedirectNext = Record<string, never>;
|
|
13
|
+
export declare const MeldRedirectInfo: ModalStepInfo<FunCheckoutStep.MELD_REDIRECT>;
|
|
14
|
+
export declare function MeldRedirect({ modalState, }: ModalStepComponentProps<FunCheckoutStep.MELD_REDIRECT>): React.JSX.Element;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type { DirectExecution } from '@funkit/api-base';
|
|
3
2
|
import type { Address } from 'viem';
|
|
3
|
+
import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
|
|
4
4
|
interface DirectExecutionNotificationProps {
|
|
5
|
-
directExecution:
|
|
5
|
+
directExecution: MergedMultiStepDirectExecution;
|
|
6
6
|
onClose: (id: string) => void;
|
|
7
7
|
onHelp: (depositAddress: Address) => void;
|
|
8
8
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { CheckoutHistoryItem
|
|
1
|
+
import type { CheckoutHistoryItem } from '@funkit/api-base';
|
|
2
2
|
import type { Address } from 'viem';
|
|
3
|
-
|
|
3
|
+
import type { MergedMultiStepDirectExecution } from '~/hooks/queries/useRecentDirectExecutions';
|
|
4
|
+
export type NotificationItem = (MergedMultiStepDirectExecution & {
|
|
4
5
|
isDirectExecution: true;
|
|
5
6
|
}) | (CheckoutHistoryItem & {
|
|
6
7
|
isDirectExecution: false;
|
|
@@ -14,6 +14,7 @@ import { type InputAmountNext, type InputAmountState } from './InputAmount/Input
|
|
|
14
14
|
import { type LoadingAccountNext, type LoadingAccountState } from './LoadingAccount';
|
|
15
15
|
import { type MeldCurrencySelectNext, type MeldCurrencySelectState } from './MeldCurrencySelect/MeldCurrencySelect';
|
|
16
16
|
import { type MeldQuotesNext, type MeldQuotesState } from './MeldQuotes/MeldQuotes';
|
|
17
|
+
import { type MeldRedirectNext, type MeldRedirectState } from './MeldRedirect/MeldRedirect';
|
|
17
18
|
import { type MoonpaySetupNext, type MoonpaySetupState } from './MoonpaySetup';
|
|
18
19
|
import { type SelectAssetNext, type SelectAssetState } from './SelectAsset';
|
|
19
20
|
import { type SourceChangeNext, type SourceChangeState } from './SourceChange/SourceChange';
|
|
@@ -81,6 +82,7 @@ export type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
|
|
|
81
82
|
[FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailState;
|
|
82
83
|
[FunCheckoutStep.ERROR_SCREEN]: ErrorScreenState;
|
|
83
84
|
[FunCheckoutStep.MELD_QUOTES]: MeldQuotesState;
|
|
85
|
+
[FunCheckoutStep.MELD_REDIRECT]: MeldRedirectState;
|
|
84
86
|
[FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectState;
|
|
85
87
|
[FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: DirectExecutionNotifCenterState;
|
|
86
88
|
}[T] & {
|
|
@@ -104,6 +106,7 @@ export type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
|
|
|
104
106
|
[FunCheckoutStep.FIAT_ACCOUNT_DETAIL]: FiatAccountDetailNext;
|
|
105
107
|
[FunCheckoutStep.ERROR_SCREEN]: null;
|
|
106
108
|
[FunCheckoutStep.MELD_QUOTES]: MeldQuotesNext;
|
|
109
|
+
[FunCheckoutStep.MELD_REDIRECT]: MeldRedirectNext;
|
|
107
110
|
[FunCheckoutStep.MELD_CURRENCY_SELECT]: MeldCurrencySelectNext;
|
|
108
111
|
[FunCheckoutStep.DIRECT_EXECUTION_NOTIF_CENTER]: null;
|
|
109
112
|
}[S] & {
|
|
@@ -207,7 +207,7 @@ interface FunkitCheckoutContextInterface {
|
|
|
207
207
|
setCheckout: (checkout: FunkitActiveCheckoutItem) => void;
|
|
208
208
|
setCompletedTimestamp(timestampMs: number): void;
|
|
209
209
|
withdrawalItem: FunkitActiveWithdrawalItem | null;
|
|
210
|
-
initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig
|
|
210
|
+
initNewWithdrawal(initSettings: Partial<UseFunkitCheckoutPropsWithFullConfig>, config: UseFunkitCheckoutPropsWithFullConfig): string;
|
|
211
211
|
updateWithdrawalSourceAssetAmount(newSourceAmount: number): void;
|
|
212
212
|
}
|
|
213
213
|
export type CheckoutProgressStep = 1 | 2;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { type TrackEventData } from '~/hooks/track/useTrack';
|
|
2
|
-
import type { FunkitActiveCheckoutItem } from './FunkitCheckoutContext';
|
|
3
|
-
export declare const
|
|
1
|
+
import { CheckoutModalEvent, type TrackEventData } from '~/hooks/track/useTrack';
|
|
2
|
+
import type { FunkitActiveCheckoutItem, FunkitActiveWithdrawalItem } from './FunkitCheckoutContext';
|
|
3
|
+
export declare const trackEventFromActiveItem: (activeItem: FunkitActiveCheckoutItem | FunkitActiveWithdrawalItem, eventName: CheckoutModalEvent | WithdrawModalEvent) => TrackEventData;
|
|
4
4
|
import type { RelayTxHash, RelayVmType } from '@funkit/fun-relay';
|
|
5
5
|
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
|
|
6
|
+
import type { WithdrawModalEvent } from '~/hooks/track/WithdrawModalEvent';
|
|
6
7
|
export declare const trackEventFromDirectExecutionConfirmed: ({ txHash, checkoutItem, latestQuote, }: {
|
|
7
8
|
txHash: RelayTxHash<RelayVmType>;
|
|
8
9
|
checkoutItem: FunkitActiveCheckoutItem;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import type { DirectExecution } from '@funkit/api-base';
|
|
2
|
+
export declare function getDirectExecutionCreatedTimeMs(directExecution: DirectExecution): number;
|
|
2
3
|
export declare function getDirectExecutionUpdatedTimeMs(directExecution: DirectExecution): number;
|
|
3
4
|
export declare function getDirectExecutionRunTimeSeconds(directExecution: DirectExecution): number;
|
|
@@ -8,13 +8,6 @@ export declare const flagConfig: {
|
|
|
8
8
|
readonly type: "string";
|
|
9
9
|
readonly default_value: string;
|
|
10
10
|
readonly overrides: [{
|
|
11
|
-
readonly if_any: [{
|
|
12
|
-
readonly key: "apiKey";
|
|
13
|
-
readonly type: "isAnyOf";
|
|
14
|
-
readonly values: ["m4iHIILHcL4gN8EXCMzGe8zIdhuCXxck49mWajzJ", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e"];
|
|
15
|
-
}];
|
|
16
|
-
readonly value: string;
|
|
17
|
-
}, {
|
|
18
11
|
readonly if_any: [{
|
|
19
12
|
readonly key: "apiKey";
|
|
20
13
|
readonly type: "isAnyOf";
|
|
@@ -46,7 +39,7 @@ export declare const flagConfig: {
|
|
|
46
39
|
readonly if_any: [{
|
|
47
40
|
readonly key: "apiKey";
|
|
48
41
|
readonly type: "isAnyOf";
|
|
49
|
-
readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2"];
|
|
42
|
+
readonly values: ["Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6", "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN", "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ", "clDebbfo9edXq1GydZ0CahSAfSimPj616lFa9p8e", "OXLUmejkh9PlNDS4gSvi9gcEWacOpTz2KUVepVf4", "BPVeP8zThG467vVIYzuiu5aVWAkS9KiR6tT1TdTP", "lUzTaIRxs95iin3pCAafB1ChA5akBiuQ1tjhXnau", "AH7lRIhbsL167nptv6eub9xDJXVHnYUm2vL7FLjK", "di9ZSqn1Ya68Y2XpBPUV1rCtNGXh8Xe5MGWzb1Xe", "2SrxurU07T2XPDxCAItjj4yYEMXlwV8K2kJB78AX", "5UzOrcAE2F3rcuMX2EeIlaYv5VUcDe6Lyh0PeZX2", "M3uox3cw0u8YCPV9cIREA6AugUMvPFTk6qOpm4um"];
|
|
50
43
|
}];
|
|
51
44
|
readonly value: true;
|
|
52
45
|
}];
|
|
@@ -179,7 +172,6 @@ export declare const flagConfig: {
|
|
|
179
172
|
readonly help_tutorial_url: {
|
|
180
173
|
readonly type: "string";
|
|
181
174
|
readonly default_value: "";
|
|
182
|
-
readonly overrides: [];
|
|
183
175
|
};
|
|
184
176
|
readonly enable_card: {
|
|
185
177
|
readonly type: "boolean";
|
|
@@ -203,11 +195,12 @@ export declare const flagConfig: {
|
|
|
203
195
|
readonly enable_brokerage: {
|
|
204
196
|
readonly type: "boolean";
|
|
205
197
|
readonly default_value: false;
|
|
198
|
+
readonly overrides: [Override<boolean>];
|
|
206
199
|
};
|
|
207
200
|
readonly enable_meld_payment: {
|
|
208
201
|
readonly type: "boolean";
|
|
209
202
|
readonly default_value: false;
|
|
210
|
-
readonly overrides: [{
|
|
203
|
+
readonly overrides: [Override<boolean>, {
|
|
211
204
|
readonly if_any: [{
|
|
212
205
|
readonly key: "userId";
|
|
213
206
|
readonly type: "isAnyOf";
|
|
@@ -261,6 +254,14 @@ export declare const flagConfig: {
|
|
|
261
254
|
readonly enable_bitcoin: {
|
|
262
255
|
readonly type: "boolean";
|
|
263
256
|
readonly default_value: true;
|
|
257
|
+
readonly overrides: [{
|
|
258
|
+
readonly if_any: [{
|
|
259
|
+
readonly key: "apiKey";
|
|
260
|
+
readonly type: "isAnyOf";
|
|
261
|
+
readonly values: ["M3uox3cw0u8YCPV9cIREA6AugUMvPFTk6qOpm4um"];
|
|
262
|
+
}];
|
|
263
|
+
readonly value: false;
|
|
264
|
+
}];
|
|
264
265
|
};
|
|
265
266
|
readonly chain_info_banners: {
|
|
266
267
|
readonly type: "string";
|
package/dist/utils/safeJSON.d.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
zealWallet
|
|
4
|
-
} from "./chunk-RNBEDQHF.js";
|
|
5
2
|
import {
|
|
6
3
|
xdefiWallet
|
|
7
4
|
} from "./chunk-BOU4WKRZ.js";
|
|
5
|
+
import {
|
|
6
|
+
zealWallet
|
|
7
|
+
} from "./chunk-RNBEDQHF.js";
|
|
8
8
|
import {
|
|
9
9
|
zerionWallet
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-Q3H3TRBS.js";
|
|
11
11
|
import {
|
|
12
12
|
subWallet
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-ZSI5N4VV.js";
|
|
14
14
|
import {
|
|
15
15
|
tahoWallet
|
|
16
16
|
} from "./chunk-ZZZRUXZE.js";
|
|
@@ -19,16 +19,16 @@ import {
|
|
|
19
19
|
} from "./chunk-DRO6WYMM.js";
|
|
20
20
|
import {
|
|
21
21
|
tokenPocketWallet
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-J3LI3FYZ.js";
|
|
23
23
|
import {
|
|
24
24
|
trustWallet
|
|
25
|
-
} from "./chunk-
|
|
26
|
-
import {
|
|
27
|
-
uniswapWallet
|
|
28
|
-
} from "./chunk-LH7BMNFZ.js";
|
|
25
|
+
} from "./chunk-RKPCWHXL.js";
|
|
29
26
|
import {
|
|
30
27
|
tokenaryWallet
|
|
31
28
|
} from "./chunk-D6AOOO5F.js";
|
|
29
|
+
import {
|
|
30
|
+
uniswapWallet
|
|
31
|
+
} from "./chunk-LH7BMNFZ.js";
|
|
32
32
|
import {
|
|
33
33
|
walletConnectWallet
|
|
34
34
|
} from "./chunk-NP5QGWNL.js";
|
|
@@ -36,118 +36,118 @@ import {
|
|
|
36
36
|
phantomWallet
|
|
37
37
|
} from "./chunk-362NXNTM.js";
|
|
38
38
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
39
|
+
rabbyWallet
|
|
40
|
+
} from "./chunk-BBOM42DL.js";
|
|
41
|
+
import {
|
|
42
|
+
rainbowWallet
|
|
43
|
+
} from "./chunk-3CICVJUN.js";
|
|
41
44
|
import {
|
|
42
45
|
ramperWallet
|
|
43
46
|
} from "./chunk-BYXPFMI7.js";
|
|
44
47
|
import {
|
|
45
48
|
roninWallet
|
|
46
|
-
} from "./chunk-
|
|
47
|
-
import {
|
|
48
|
-
rainbowWallet
|
|
49
|
-
} from "./chunk-2KUBG3S6.js";
|
|
49
|
+
} from "./chunk-QLVVUKYB.js";
|
|
50
50
|
import {
|
|
51
51
|
safeWallet
|
|
52
52
|
} from "./chunk-BQQQL6UD.js";
|
|
53
|
-
import {
|
|
54
|
-
safepalWallet
|
|
55
|
-
} from "./chunk-NT2HYJKW.js";
|
|
56
53
|
import {
|
|
57
54
|
safeheronWallet
|
|
58
55
|
} from "./chunk-RZIO5TFF.js";
|
|
59
56
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
62
|
-
import {
|
|
63
|
-
metaMaskWallet
|
|
64
|
-
} from "./chunk-2HYNUNAS.js";
|
|
57
|
+
safepalWallet
|
|
58
|
+
} from "./chunk-EC6CHBSZ.js";
|
|
65
59
|
import {
|
|
66
60
|
ledgerWallet
|
|
67
61
|
} from "./chunk-BRBKM4PW.js";
|
|
68
62
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
63
|
+
metaMaskWallet
|
|
64
|
+
} from "./chunk-UYGJO62F.js";
|
|
65
|
+
import {
|
|
66
|
+
mewWallet
|
|
67
|
+
} from "./chunk-OL5ZO7E4.js";
|
|
71
68
|
import {
|
|
72
69
|
oktoWallet
|
|
73
70
|
} from "./chunk-ADIXAKUL.js";
|
|
74
71
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
72
|
+
okxWallet
|
|
73
|
+
} from "./chunk-AFXHGWBH.js";
|
|
77
74
|
import {
|
|
78
75
|
omniWallet
|
|
79
76
|
} from "./chunk-7CUY5G6R.js";
|
|
80
77
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
78
|
+
oneInchWallet
|
|
79
|
+
} from "./chunk-OESTDX6I.js";
|
|
80
|
+
import {
|
|
81
|
+
oneKeyWallet
|
|
82
|
+
} from "./chunk-SHBUZ7U7.js";
|
|
83
|
+
import {
|
|
84
|
+
foxWallet
|
|
85
|
+
} from "./chunk-CNPKISHN.js";
|
|
83
86
|
import {
|
|
84
87
|
frameWallet
|
|
85
88
|
} from "./chunk-IFON7E6U.js";
|
|
86
89
|
import {
|
|
87
90
|
frontierWallet
|
|
88
|
-
} from "./chunk-
|
|
89
|
-
import {
|
|
90
|
-
enkryptWallet
|
|
91
|
-
} from "./chunk-OLOIXTYS.js";
|
|
91
|
+
} from "./chunk-VWCLFMWJ.js";
|
|
92
92
|
import {
|
|
93
93
|
gateWallet
|
|
94
|
-
} from "./chunk-
|
|
94
|
+
} from "./chunk-CJGUM55H.js";
|
|
95
95
|
import {
|
|
96
96
|
imTokenWallet
|
|
97
97
|
} from "./chunk-COZ7MIQS.js";
|
|
98
|
+
import {
|
|
99
|
+
injectedWallet
|
|
100
|
+
} from "./chunk-XWUJE7MW.js";
|
|
98
101
|
import {
|
|
99
102
|
kresusWallet
|
|
100
103
|
} from "./chunk-MJXPRJZT.js";
|
|
101
104
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-LNEC5RNX.js";
|
|
104
107
|
import {
|
|
105
108
|
clvWallet
|
|
106
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-2GJQ4XZQ.js";
|
|
107
110
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
111
|
+
coinbaseWallet
|
|
112
|
+
} from "./chunk-H4IRCEZN.js";
|
|
110
113
|
import {
|
|
111
114
|
coin98Wallet
|
|
112
|
-
} from "./chunk-
|
|
115
|
+
} from "./chunk-KIDC67XJ.js";
|
|
113
116
|
import {
|
|
114
117
|
coreWallet
|
|
115
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-JCHN6A47.js";
|
|
116
119
|
import {
|
|
117
120
|
dawnWallet
|
|
118
121
|
} from "./chunk-HWPKCIBE.js";
|
|
119
|
-
import {
|
|
120
|
-
coinbaseWallet
|
|
121
|
-
} from "./chunk-H4IRCEZN.js";
|
|
122
122
|
import {
|
|
123
123
|
desigWallet
|
|
124
124
|
} from "./chunk-OPAZMNA7.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
128
|
-
import {
|
|
129
|
-
bitgetWallet
|
|
130
|
-
} from "./chunk-TDAVGY5F.js";
|
|
126
|
+
enkryptWallet
|
|
127
|
+
} from "./chunk-OLOIXTYS.js";
|
|
131
128
|
import {
|
|
132
129
|
argentWallet
|
|
133
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
134
|
-
import {
|
|
135
|
-
bifrostWallet
|
|
136
|
-
} from "./chunk-A5N6B5UW.js";
|
|
137
131
|
import {
|
|
138
132
|
bitskiWallet
|
|
139
133
|
} from "./chunk-HS3C7OQV.js";
|
|
134
|
+
import {
|
|
135
|
+
bifrostWallet
|
|
136
|
+
} from "./chunk-UIASLGLV.js";
|
|
137
|
+
import {
|
|
138
|
+
bitgetWallet
|
|
139
|
+
} from "./chunk-5W7VDOCL.js";
|
|
140
140
|
import {
|
|
141
141
|
bitverseWallet
|
|
142
142
|
} from "./chunk-3HZRRP4Y.js";
|
|
143
|
-
import {
|
|
144
|
-
bloomWallet
|
|
145
|
-
} from "./chunk-S27IADFU.js";
|
|
146
|
-
import "./chunk-23WIEY36.js";
|
|
147
143
|
import {
|
|
148
144
|
braveWallet
|
|
149
145
|
} from "./chunk-BPZ2XJO2.js";
|
|
150
146
|
import "./chunk-DNSG5Q7V.js";
|
|
147
|
+
import {
|
|
148
|
+
bloomWallet
|
|
149
|
+
} from "./chunk-S27IADFU.js";
|
|
150
|
+
import "./chunk-23WIEY36.js";
|
|
151
151
|
export {
|
|
152
152
|
argentWallet,
|
|
153
153
|
bifrostWallet,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "6.14.
|
|
3
|
+
"version": "6.14.11",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -93,12 +93,12 @@
|
|
|
93
93
|
"ua-parser-js": "^1.0.37",
|
|
94
94
|
"use-debounce": "^10.0.5",
|
|
95
95
|
"uuid": "^9.0.1",
|
|
96
|
-
"@funkit/api-base": "1.12.
|
|
96
|
+
"@funkit/api-base": "1.12.9",
|
|
97
97
|
"@funkit/chains": "0.4.2",
|
|
98
|
-
"@funkit/core": "2.3.53",
|
|
99
98
|
"@funkit/utils": "1.1.13",
|
|
100
99
|
"@funkit/fun-relay": "2.1.1",
|
|
101
|
-
"@funkit/wagmi-tools": "3.0.
|
|
100
|
+
"@funkit/wagmi-tools": "3.0.77",
|
|
101
|
+
"@funkit/core": "2.3.54"
|
|
102
102
|
},
|
|
103
103
|
"repository": {
|
|
104
104
|
"type": "git",
|