@funkit/connect 6.14.4 → 6.14.6
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/components/Dialog/Dialog.d.ts +2 -1
- package/dist/components/Dropdown/BaseDropdown.d.ts +2 -1
- package/dist/components/Dropdown/ChainDropdown.d.ts +2 -1
- package/dist/components/Dropdown/TokenDropdown.d.ts +5 -1
- package/dist/components/FunAlert/FunAlert.d.ts +2 -1
- package/dist/components/FunAsset/FunAssetItem.d.ts +2 -1
- package/dist/components/FunButton/FunButton.d.ts +2 -1
- package/dist/components/FunButton/FunIconButton.d.ts +2 -1
- package/dist/components/FunInput/FunInput.d.ts +1 -0
- package/dist/components/FunNotification/FunNotification.d.ts +2 -1
- package/dist/components/FunPaymentMethodItem/FunPaymentMethodItem.d.ts +4 -2
- package/dist/components/FunPayments/FunPaymentMethods.d.ts +6 -3
- package/dist/components/MeldQuoteItem/MeldQuoteItem.d.ts +2 -1
- package/dist/components/SourceMeldQuoteItem/SourceMeldQuoteItem.d.ts +2 -1
- package/dist/components/SourcePaymentMethodItem/SourcePaymentMethodItem.d.ts +2 -1
- package/dist/components/Text/Text.d.ts +1 -0
- package/dist/consts/customers.d.ts +1 -0
- package/dist/hooks/useCheckoutAccountBalanceTransfer.d.ts +1 -1
- package/dist/hooks/useIsUsUser.d.ts +1 -0
- package/dist/index.js +1944 -1695
- package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +2 -5
- package/dist/modals/CheckoutModal/InputAmount/state.d.ts +5 -1
- package/dist/modals/CheckoutModal/InputAmount/useAmountInput.d.ts +1 -2
- package/dist/modals/CheckoutModal/InputAmount/useMeld.d.ts +38 -0
- package/dist/modals/CheckoutModal/TransferToken/CheckoutNotifications.d.ts +1 -9
- package/dist/modals/CheckoutModal/TransferToken/types.d.ts +15 -0
- package/dist/modals/CheckoutModal/stepTransition.d.ts +1 -1
- package/dist/providers/FunkitCheckoutContext.d.ts +10 -0
- package/dist/utils/checkout.d.ts +1 -1
- 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 +66 -66
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { ExchangeRates } from '@funkit/api-base';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import type { FunkitTextCustomizationsConfig } from '~/providers/FunkitConfigContext';
|
|
4
4
|
import type { AssetHoldingsItem } from '~/utils/assets';
|
|
5
5
|
import type { FunkitCheckoutConfig } from '../../../providers/FunkitCheckoutContext';
|
|
6
6
|
import { FunCheckoutStep, type ModalStepComponentProps } from '../stepTransition';
|
|
@@ -15,8 +15,5 @@ interface InputAmountLoadedProps extends ModalStepComponentProps<FunCheckoutStep
|
|
|
15
15
|
defaultFiatCurrency?: string;
|
|
16
16
|
textCustomizations: FunkitTextCustomizationsConfig['confirmationScreen'];
|
|
17
17
|
}
|
|
18
|
-
export declare function openMeldPopup(linkGetter: () => Promise<{
|
|
19
|
-
widgetUrl: string;
|
|
20
|
-
}>): Promise<void>;
|
|
21
18
|
export declare function InputAmountLoaded({ checkoutConfig, modalState, onNext, onClose, sourceHolding, unitPrice, currencyExchangeRates, defaultFiatCurrency, textCustomizations, }: InputAmountLoadedProps): React.JSX.Element;
|
|
22
19
|
export {};
|
|
@@ -47,6 +47,10 @@ export interface AmountInputState {
|
|
|
47
47
|
fiatCurrencyExchangeRate: number | undefined;
|
|
48
48
|
/** Whether meld is enabled */
|
|
49
49
|
meldEnabled: boolean;
|
|
50
|
+
/** Whether the input amount is in vault deposit mode
|
|
51
|
+
* https://linear.app/funxyz/issue/CUS-142/product-enable-customers-to-pass-in-an-exchange-rate-for-vault
|
|
52
|
+
**/
|
|
53
|
+
isVaultDeposit: boolean;
|
|
50
54
|
}
|
|
51
55
|
/** Derived state includes additional fields that are pure functions of base state */
|
|
52
56
|
export interface AmountInputDerivedState extends AmountInputState {
|
|
@@ -100,4 +104,4 @@ export type AmountInputError = {
|
|
|
100
104
|
export declare function calcInitialFiatAmount(balance: number): number;
|
|
101
105
|
export declare function initializeState({ checkoutConfig, defaultAmount, fiatCurrency, locale, maxUsd, minUsd, paymentMethod, quickOptions, sourceHolding, unitPrice: realUnitPrice, fiatCurrencyExchangeRate, meldEnabled, }: AmountInputInitOptions): AmountInputState;
|
|
102
106
|
export declare function reduceState(state: AmountInputState, action: AmountInputAction): AmountInputState;
|
|
103
|
-
export declare function getDerivedState(state: AmountInputState): AmountInputDerivedState;
|
|
107
|
+
export declare function getDerivedState(state: AmountInputState, targetAssetTicker: string): AmountInputDerivedState;
|
|
@@ -2,7 +2,7 @@ import { type RefObject } from 'react';
|
|
|
2
2
|
import type { FunInputChangeEvent } from '~/components/FunInput/FunInput';
|
|
3
3
|
import { type AmountInputDerivedState, type AmountInputInitOptions } from './state';
|
|
4
4
|
import { type InputAmountSuggestion } from './utils';
|
|
5
|
-
interface UseAmountInputResult extends AmountInputDerivedState {
|
|
5
|
+
export interface UseAmountInputResult extends AmountInputDerivedState {
|
|
6
6
|
fontSize: number;
|
|
7
7
|
inputWidth: number | undefined;
|
|
8
8
|
onChange(event: FunInputChangeEvent): void;
|
|
@@ -13,4 +13,3 @@ interface UseAmountInputResult extends AmountInputDerivedState {
|
|
|
13
13
|
toggleInputInFiat: () => void;
|
|
14
14
|
}
|
|
15
15
|
export declare function useAmountInput(options: AmountInputInitOptions): UseAmountInputResult;
|
|
16
|
-
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { type MeldQuote, MeldServiceProvider } from '@funkit/api-base';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import type { ErrorNotification } from '~/components/FunNotification/FunNotification';
|
|
4
|
+
import { FunCheckoutStep, type NextPayload } from '../stepTransition';
|
|
5
|
+
export declare function useMeldUI({ meldEnabled, manuallySelectedQuote, fiatAmount, fiatCurrency, onNext, onClose, }: {
|
|
6
|
+
meldEnabled: boolean;
|
|
7
|
+
manuallySelectedQuote: MeldQuote | undefined;
|
|
8
|
+
fiatAmount: number | undefined;
|
|
9
|
+
fiatCurrency: string | undefined;
|
|
10
|
+
onNext: (data: NextPayload<FunCheckoutStep.INPUT_AMOUNT>) => void;
|
|
11
|
+
onClose: () => void;
|
|
12
|
+
}): {
|
|
13
|
+
getMeldFooter: () => React.JSX.Element;
|
|
14
|
+
handleMeldContinue: () => Promise<void>;
|
|
15
|
+
isMeldContinueDisabled: boolean | undefined;
|
|
16
|
+
isMeldLinkPending: boolean;
|
|
17
|
+
getMeldError: () => ErrorNotification | undefined;
|
|
18
|
+
};
|
|
19
|
+
export declare function useMeld(meldEnabled: boolean, manuallySelectedQuote: MeldQuote | undefined, usdAmount: number | undefined, fiatCurrency: string | undefined): {
|
|
20
|
+
meldQuotesQuery: import("@tanstack/react-query").UseQueryResult<MeldQuote[]> & {
|
|
21
|
+
isOutdated: boolean;
|
|
22
|
+
};
|
|
23
|
+
mutateAsync: import("@tanstack/react-query").UseMutateAsyncFunction<import("@funkit/api-base").MeldCreateCryptoWidgetResponse, Error, MeldServiceProvider, unknown>;
|
|
24
|
+
isMeldLinkPending: boolean;
|
|
25
|
+
meldLimitError: {
|
|
26
|
+
issue: string;
|
|
27
|
+
suggestion: string;
|
|
28
|
+
} | undefined;
|
|
29
|
+
bestRateQuote: MeldQuote | undefined;
|
|
30
|
+
selectedQuote: MeldQuote | undefined;
|
|
31
|
+
isSelectedQuoteUnavailable: boolean | undefined;
|
|
32
|
+
isMeldMoonpaySelected: boolean;
|
|
33
|
+
isMeldContinueDisabled: boolean | undefined;
|
|
34
|
+
getMeldError: () => ErrorNotification | undefined;
|
|
35
|
+
};
|
|
36
|
+
export declare function openMeldPopup(linkGetter: () => Promise<{
|
|
37
|
+
widgetUrl: string;
|
|
38
|
+
}>): Promise<void>;
|
|
@@ -1,11 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import type {
|
|
3
|
-
type NotificationVariant = 'withdrawal' | 'token_transfer';
|
|
4
|
-
interface CheckoutNotificationsProps {
|
|
5
|
-
onHelp: (depositAddress: Address) => void;
|
|
6
|
-
/** To control notifications visibility on specific pages, without changing internal dismissal state */
|
|
7
|
-
isVisible: boolean;
|
|
8
|
-
variant: NotificationVariant | undefined;
|
|
9
|
-
}
|
|
2
|
+
import type { CheckoutNotificationsProps } from './types';
|
|
10
3
|
export declare const CheckoutNotifications: ({ onHelp, isVisible, variant, }: CheckoutNotificationsProps) => React.JSX.Element | null;
|
|
11
|
-
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { CheckoutHistoryItem, DirectExecution } from '@funkit/api-base';
|
|
2
|
+
import type { Address } from 'viem';
|
|
3
|
+
export type NotificationItem = (DirectExecution & {
|
|
4
|
+
isDirectExecution: true;
|
|
5
|
+
}) | (CheckoutHistoryItem & {
|
|
6
|
+
isDirectExecution: false;
|
|
7
|
+
});
|
|
8
|
+
type NotificationVariant = 'withdrawal' | 'token_transfer';
|
|
9
|
+
export interface CheckoutNotificationsProps {
|
|
10
|
+
onHelp: (depositAddress: Address) => void;
|
|
11
|
+
/** To control notifications visibility on specific pages, without changing internal dismissal state */
|
|
12
|
+
isVisible: boolean;
|
|
13
|
+
variant: NotificationVariant | undefined;
|
|
14
|
+
}
|
|
15
|
+
export {};
|
|
@@ -105,7 +105,7 @@ type CheckoutModalState<S extends FunCheckoutStep = FunCheckoutStep> = {
|
|
|
105
105
|
step: T;
|
|
106
106
|
};
|
|
107
107
|
}[S];
|
|
108
|
-
type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
|
|
108
|
+
export type NextPayload<S extends FunCheckoutStep = FunCheckoutStep> = {
|
|
109
109
|
[FunCheckoutStep.CHECKOUT_HELP]: null;
|
|
110
110
|
[FunCheckoutStep.CHECKOUT_COMPLETE]: CheckoutCompleteNext;
|
|
111
111
|
[FunCheckoutStep.CONFIRMATION]: ConfirmationStepNext;
|
|
@@ -17,6 +17,14 @@ export interface DynamicTargetAssetCandidate extends TokenInfo {
|
|
|
17
17
|
isDefault?: boolean;
|
|
18
18
|
badgeText?: string;
|
|
19
19
|
targetAssetMinAmount?: number;
|
|
20
|
+
/**
|
|
21
|
+
* Exchange rate of the target asset in terms of the staking token.
|
|
22
|
+
* Represents how many staking tokens one unit of the target asset can be exchanged for.
|
|
23
|
+
*
|
|
24
|
+
* Example: If `targetAsset`/`stakingToken` is USDT/hbUSDT and the rate is 1.01,
|
|
25
|
+
* 1 USDT can be exchanged for 1.01 hbUSDT.
|
|
26
|
+
*/
|
|
27
|
+
stakingTokenRate?: number;
|
|
20
28
|
}
|
|
21
29
|
export declare enum FunCheckoutStartingStep {
|
|
22
30
|
SOURCE_CHANGE = "source_change",
|
|
@@ -66,6 +74,8 @@ export interface FunkitCheckoutConfig extends Omit<ApiFunkitCheckoutConfig, 'gen
|
|
|
66
74
|
/** For Checkout with Custom Action, QRCode needs special action type
|
|
67
75
|
* to specify the onchain action to execute after deposit */
|
|
68
76
|
qrcodeActionType?: string;
|
|
77
|
+
/** set this if you want enable vault like deposit*/
|
|
78
|
+
stakingToken?: DynamicTargetAssetCandidate;
|
|
69
79
|
}
|
|
70
80
|
export interface WithdrawalConfigBase {
|
|
71
81
|
/** Title to show in the checkout modal. Defaults to "Checkout" **/
|
package/dist/utils/checkout.d.ts
CHANGED
|
@@ -55,7 +55,6 @@ 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;
|
|
59
58
|
fee?: {
|
|
60
59
|
token?: string;
|
|
61
60
|
amount?: number;
|
|
@@ -63,6 +62,7 @@ export declare function getFunkitEnvForCheckoutEstimation({ chainId, bypassWalle
|
|
|
63
62
|
recipient: Address;
|
|
64
63
|
} | undefined;
|
|
65
64
|
skipDBAction?: boolean | undefined;
|
|
65
|
+
logger?: import("@funkit/api-base").Logger | undefined;
|
|
66
66
|
};
|
|
67
67
|
export type TokenInfo = {
|
|
68
68
|
symbol: string;
|
|
@@ -1,67 +1,61 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
|
-
|
|
4
|
-
} from "./chunk-
|
|
3
|
+
xdefiWallet
|
|
4
|
+
} from "./chunk-BOU4WKRZ.js";
|
|
5
5
|
import {
|
|
6
6
|
zerionWallet
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-Q3H3TRBS.js";
|
|
8
8
|
import {
|
|
9
9
|
zealWallet
|
|
10
10
|
} from "./chunk-RNBEDQHF.js";
|
|
11
|
-
import {
|
|
12
|
-
talismanWallet
|
|
13
|
-
} from "./chunk-DRO6WYMM.js";
|
|
14
11
|
import {
|
|
15
12
|
subWallet
|
|
16
|
-
} from "./chunk-
|
|
17
|
-
import {
|
|
18
|
-
tahoWallet
|
|
19
|
-
} from "./chunk-ZZZRUXZE.js";
|
|
13
|
+
} from "./chunk-ZSI5N4VV.js";
|
|
20
14
|
import {
|
|
21
15
|
tokenPocketWallet
|
|
22
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-J3LI3FYZ.js";
|
|
17
|
+
import {
|
|
18
|
+
talismanWallet
|
|
19
|
+
} from "./chunk-DRO6WYMM.js";
|
|
23
20
|
import {
|
|
24
21
|
tokenaryWallet
|
|
25
22
|
} from "./chunk-D6AOOO5F.js";
|
|
26
23
|
import {
|
|
27
24
|
trustWallet
|
|
28
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-RKPCWHXL.js";
|
|
29
26
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
27
|
+
uniswapWallet
|
|
28
|
+
} from "./chunk-LH7BMNFZ.js";
|
|
32
29
|
import {
|
|
33
30
|
walletConnectWallet
|
|
34
31
|
} from "./chunk-NP5QGWNL.js";
|
|
35
32
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
33
|
+
tahoWallet
|
|
34
|
+
} from "./chunk-ZZZRUXZE.js";
|
|
35
|
+
import {
|
|
36
|
+
omniWallet
|
|
37
|
+
} from "./chunk-7CUY5G6R.js";
|
|
38
|
+
import {
|
|
39
|
+
rainbowWallet
|
|
40
|
+
} from "./chunk-3CICVJUN.js";
|
|
38
41
|
import {
|
|
39
42
|
rabbyWallet
|
|
40
43
|
} from "./chunk-BBOM42DL.js";
|
|
41
44
|
import {
|
|
42
|
-
|
|
43
|
-
} from "./chunk-
|
|
45
|
+
ramperWallet
|
|
46
|
+
} from "./chunk-BYXPFMI7.js";
|
|
44
47
|
import {
|
|
45
48
|
roninWallet
|
|
46
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-QLVVUKYB.js";
|
|
47
50
|
import {
|
|
48
51
|
safeWallet
|
|
49
52
|
} from "./chunk-BQQQL6UD.js";
|
|
50
|
-
import {
|
|
51
|
-
safepalWallet
|
|
52
|
-
} from "./chunk-NT2HYJKW.js";
|
|
53
53
|
import {
|
|
54
54
|
safeheronWallet
|
|
55
55
|
} from "./chunk-RZIO5TFF.js";
|
|
56
56
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
59
|
-
import {
|
|
60
|
-
ledgerWallet
|
|
61
|
-
} from "./chunk-BRBKM4PW.js";
|
|
62
|
-
import {
|
|
63
|
-
kresusWallet
|
|
64
|
-
} from "./chunk-MJXPRJZT.js";
|
|
57
|
+
safepalWallet
|
|
58
|
+
} from "./chunk-EC6CHBSZ.js";
|
|
65
59
|
import {
|
|
66
60
|
mewWallet
|
|
67
61
|
} from "./chunk-OL5ZO7E4.js";
|
|
@@ -70,52 +64,58 @@ import {
|
|
|
70
64
|
} from "./chunk-ADIXAKUL.js";
|
|
71
65
|
import {
|
|
72
66
|
okxWallet
|
|
73
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-AFXHGWBH.js";
|
|
74
68
|
import {
|
|
75
69
|
oneInchWallet
|
|
76
70
|
} from "./chunk-OESTDX6I.js";
|
|
77
71
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
72
|
+
metaMaskWallet
|
|
73
|
+
} from "./chunk-UYGJO62F.js";
|
|
74
|
+
import {
|
|
75
|
+
injectedWallet
|
|
76
|
+
} from "./chunk-XWUJE7MW.js";
|
|
77
|
+
import {
|
|
78
|
+
phantomWallet
|
|
79
|
+
} from "./chunk-362NXNTM.js";
|
|
80
80
|
import {
|
|
81
81
|
oneKeyWallet
|
|
82
82
|
} from "./chunk-SHBUZ7U7.js";
|
|
83
83
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
84
|
+
foxWallet
|
|
85
|
+
} from "./chunk-CNPKISHN.js";
|
|
86
|
+
import {
|
|
87
|
+
frontierWallet
|
|
88
|
+
} from "./chunk-VWCLFMWJ.js";
|
|
86
89
|
import {
|
|
87
90
|
frameWallet
|
|
88
91
|
} from "./chunk-IFON7E6U.js";
|
|
89
|
-
import {
|
|
90
|
-
frontierWallet
|
|
91
|
-
} from "./chunk-TCAGNB4B.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
98
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
101
|
-
import {
|
|
102
|
-
metaMaskWallet
|
|
103
|
-
} from "./chunk-2HYNUNAS.js";
|
|
99
|
+
ledgerWallet
|
|
100
|
+
} from "./chunk-BRBKM4PW.js";
|
|
104
101
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
102
|
+
kresusWallet
|
|
103
|
+
} from "./chunk-MJXPRJZT.js";
|
|
107
104
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
105
|
+
braveWallet
|
|
106
|
+
} from "./chunk-BPZ2XJO2.js";
|
|
110
107
|
import {
|
|
111
|
-
|
|
112
|
-
} from "./chunk-
|
|
108
|
+
bitverseWallet
|
|
109
|
+
} from "./chunk-3HZRRP4Y.js";
|
|
113
110
|
import {
|
|
114
111
|
coinbaseWallet
|
|
115
112
|
} from "./chunk-H4IRCEZN.js";
|
|
113
|
+
import {
|
|
114
|
+
bybitWallet
|
|
115
|
+
} from "./chunk-LNEC5RNX.js";
|
|
116
116
|
import {
|
|
117
117
|
coreWallet
|
|
118
|
-
} from "./chunk-
|
|
118
|
+
} from "./chunk-JCHN6A47.js";
|
|
119
119
|
import {
|
|
120
120
|
dawnWallet
|
|
121
121
|
} from "./chunk-HWPKCIBE.js";
|
|
@@ -123,31 +123,31 @@ import {
|
|
|
123
123
|
desigWallet
|
|
124
124
|
} from "./chunk-OPAZMNA7.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
126
|
+
enkryptWallet
|
|
127
|
+
} from "./chunk-OLOIXTYS.js";
|
|
128
|
+
import {
|
|
129
|
+
bifrostWallet
|
|
130
|
+
} from "./chunk-UIASLGLV.js";
|
|
128
131
|
import {
|
|
129
132
|
argentWallet
|
|
130
133
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
134
|
import {
|
|
132
|
-
|
|
133
|
-
} from "./chunk-
|
|
134
|
-
import {
|
|
135
|
-
bloomWallet
|
|
136
|
-
} from "./chunk-S27IADFU.js";
|
|
135
|
+
bitskiWallet
|
|
136
|
+
} from "./chunk-HS3C7OQV.js";
|
|
137
137
|
import {
|
|
138
138
|
bitgetWallet
|
|
139
|
-
} from "./chunk-
|
|
140
|
-
import {
|
|
141
|
-
bitverseWallet
|
|
142
|
-
} from "./chunk-3HZRRP4Y.js";
|
|
139
|
+
} from "./chunk-5W7VDOCL.js";
|
|
143
140
|
import {
|
|
144
|
-
|
|
145
|
-
} from "./chunk-
|
|
141
|
+
bloomWallet
|
|
142
|
+
} from "./chunk-S27IADFU.js";
|
|
146
143
|
import {
|
|
147
144
|
clvWallet
|
|
148
|
-
} from "./chunk-
|
|
149
|
-
import
|
|
145
|
+
} from "./chunk-2GJQ4XZQ.js";
|
|
146
|
+
import {
|
|
147
|
+
coin98Wallet
|
|
148
|
+
} from "./chunk-KIDC67XJ.js";
|
|
150
149
|
import "./chunk-DNSG5Q7V.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.6",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"ua-parser-js": "^1.0.37",
|
|
93
93
|
"use-debounce": "^10.0.5",
|
|
94
94
|
"uuid": "^9.0.1",
|
|
95
|
-
"@funkit/
|
|
96
|
-
"@funkit/api-base": "1.12.5",
|
|
97
|
-
"@funkit/wagmi-tools": "3.0.73",
|
|
95
|
+
"@funkit/api-base": "1.12.6",
|
|
98
96
|
"@funkit/chains": "0.4.1",
|
|
97
|
+
"@funkit/core": "2.3.51",
|
|
99
98
|
"@funkit/fun-relay": "2.0.4",
|
|
100
|
-
"@funkit/utils": "1.1.12"
|
|
99
|
+
"@funkit/utils": "1.1.12",
|
|
100
|
+
"@funkit/wagmi-tools": "3.0.74"
|
|
101
101
|
},
|
|
102
102
|
"repository": {
|
|
103
103
|
"type": "git",
|