@funkit/connect 5.5.3 → 5.5.4
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 +8 -0
- package/dist/hooks/useIsUsUser.d.ts +3 -0
- package/dist/index.js +72 -21
- package/dist/utils/flags/config.d.ts +16 -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 +61 -61
- 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
- package/dist/hooks/useIsUsBankrUser.d.ts +0 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -3610,6 +3610,22 @@ var flagConfig = {
|
|
|
3610
3610
|
],
|
|
3611
3611
|
value: true
|
|
3612
3612
|
},
|
|
3613
|
+
{
|
|
3614
|
+
if_all: [
|
|
3615
|
+
{
|
|
3616
|
+
key: "userId",
|
|
3617
|
+
type: "pctRollout",
|
|
3618
|
+
pct: 5
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
key: "apiKey",
|
|
3622
|
+
type: "isAnyOf",
|
|
3623
|
+
values: [POLYMARKET_API_KEY2]
|
|
3624
|
+
}
|
|
3625
|
+
],
|
|
3626
|
+
if_any: [],
|
|
3627
|
+
value: true
|
|
3628
|
+
},
|
|
3613
3629
|
{
|
|
3614
3630
|
if_any: [
|
|
3615
3631
|
{
|
|
@@ -7438,6 +7454,8 @@ function FunkitCheckoutProvider({ children }) {
|
|
|
7438
7454
|
clientMetadata,
|
|
7439
7455
|
apiKey: funkitConfig.apiKey
|
|
7440
7456
|
});
|
|
7457
|
+
checkoutItem.initSettings.onConfirmation?.(txHash);
|
|
7458
|
+
logger.log("directExecutionCheckoutConfirmed", { txHash });
|
|
7441
7459
|
updateActiveCheckout({ depositAddress: txHash });
|
|
7442
7460
|
refreshCheckoutHistory();
|
|
7443
7461
|
return txHash;
|
|
@@ -8533,11 +8551,20 @@ function useFunkitUserIp() {
|
|
|
8533
8551
|
};
|
|
8534
8552
|
}
|
|
8535
8553
|
|
|
8536
|
-
// src/hooks/
|
|
8537
|
-
function
|
|
8554
|
+
// src/hooks/useIsUsUser.ts
|
|
8555
|
+
function useIsUsUser() {
|
|
8538
8556
|
const { userIpInfo } = useFunkitUserIp();
|
|
8557
|
+
return userIpInfo?.alpha2 === "US";
|
|
8558
|
+
}
|
|
8559
|
+
function useIsUsBankrUser() {
|
|
8560
|
+
const { apiKey } = useFunkitConfig();
|
|
8561
|
+
const isUsUser = useIsUsUser();
|
|
8562
|
+
return isUsUser && isBankrCustomer(apiKey);
|
|
8563
|
+
}
|
|
8564
|
+
function useIsUsKatanaUser() {
|
|
8539
8565
|
const { apiKey } = useFunkitConfig();
|
|
8540
|
-
|
|
8566
|
+
const isUsUser = useIsUsUser();
|
|
8567
|
+
return isUsUser && isKatanaCustomer(apiKey);
|
|
8541
8568
|
}
|
|
8542
8569
|
|
|
8543
8570
|
// src/hooks/useEnabledTokenTransferChainTokens.ts
|
|
@@ -14544,6 +14571,16 @@ function CheckoutPrimaryInfo({
|
|
|
14544
14571
|
|
|
14545
14572
|
// src/modals/CheckoutModal/ConfirmationStep/DisclaimerText.tsx
|
|
14546
14573
|
import React128, { useMemo as useMemo19 } from "react";
|
|
14574
|
+
|
|
14575
|
+
// src/utils/customer.ts
|
|
14576
|
+
function isKatanaEarnFlow({
|
|
14577
|
+
apiKey,
|
|
14578
|
+
checkoutConfig
|
|
14579
|
+
}) {
|
|
14580
|
+
return isKatanaCustomer(apiKey) && !!checkoutConfig && isCheckoutPostActionRequired(checkoutConfig);
|
|
14581
|
+
}
|
|
14582
|
+
|
|
14583
|
+
// src/modals/CheckoutModal/ConfirmationStep/DisclaimerText.tsx
|
|
14547
14584
|
var DisclaimerText = ({
|
|
14548
14585
|
showDydxDisclaimer,
|
|
14549
14586
|
continueText,
|
|
@@ -14553,6 +14590,11 @@ var DisclaimerText = ({
|
|
|
14553
14590
|
}) => {
|
|
14554
14591
|
const { apiKey } = useFunkitConfig();
|
|
14555
14592
|
const isVertex = isVertexCustomer(apiKey);
|
|
14593
|
+
const isKatana = isKatanaCustomer(apiKey);
|
|
14594
|
+
const isKatanaEarn = isKatanaEarnFlow({
|
|
14595
|
+
apiKey,
|
|
14596
|
+
checkoutConfig: checkoutItem?.initSettings.config
|
|
14597
|
+
});
|
|
14556
14598
|
const vertexText = useVertextDisclaimer(checkoutItem, isCardPayment);
|
|
14557
14599
|
const cardDisclaimer = useCardDisclaimer(
|
|
14558
14600
|
checkoutItem,
|
|
@@ -14566,7 +14608,21 @@ var DisclaimerText = ({
|
|
|
14566
14608
|
inline: true,
|
|
14567
14609
|
text: "privacy policy"
|
|
14568
14610
|
}
|
|
14569
|
-
), ".") : /* @__PURE__ */ React128.createElement(React128.Fragment, null,
|
|
14611
|
+
), ".") : isKatana && isKatanaEarn ? /* @__PURE__ */ React128.createElement(React128.Fragment, null, showCardDisclaimer && `${cardDisclaimer} `, "By clicking on ", continueText, ", you agree to ", FUN_ORG_NAME, "'s", " ", /* @__PURE__ */ React128.createElement(FunLinkButton, { href: FUN_TERMS_URL, inline: true, text: "terms" }), ", Katana's ", /* @__PURE__ */ React128.createElement(
|
|
14612
|
+
FunLinkButton,
|
|
14613
|
+
{
|
|
14614
|
+
href: "https://katana.network/legal/terms-and-conditions",
|
|
14615
|
+
inline: true,
|
|
14616
|
+
text: "terms"
|
|
14617
|
+
}
|
|
14618
|
+
), ", and the ", /* @__PURE__ */ React128.createElement(FunLinkButton, { href: "https://yearn.fi/", inline: true, text: "terms" }), " applicable to third-party Yearn vaults", ".") : isKatana && !isKatanaEarn ? /* @__PURE__ */ React128.createElement(React128.Fragment, null, showCardDisclaimer && `${cardDisclaimer} `, "By clicking on ", continueText, ", you agree to ", FUN_ORG_NAME, "'s", " ", /* @__PURE__ */ React128.createElement(FunLinkButton, { href: FUN_TERMS_URL, inline: true, text: "terms" }), ", Katana's and Vaultbridge's ", /* @__PURE__ */ React128.createElement(
|
|
14619
|
+
FunLinkButton,
|
|
14620
|
+
{
|
|
14621
|
+
href: "https://katana.network/legal/terms-and-conditions",
|
|
14622
|
+
inline: true,
|
|
14623
|
+
text: "terms"
|
|
14624
|
+
}
|
|
14625
|
+
), ", and the ", /* @__PURE__ */ React128.createElement(FunLinkButton, { href: "https://morpho.org/", inline: true, text: "terms" }), " applicable to third-party Morpho vaults", ".") : /* @__PURE__ */ React128.createElement(React128.Fragment, null, isVertex && vertexText ? `${vertexText} ` : showCardDisclaimer && `${cardDisclaimer} `, "By clicking on ", continueText, ", you agree to our", " ", /* @__PURE__ */ React128.createElement(FunLinkButton, { href: FUN_TERMS_URL, inline: true, text: "terms" }), ".");
|
|
14570
14626
|
};
|
|
14571
14627
|
function useCardDisclaimer(checkoutItem, finalConvertedAssetName) {
|
|
14572
14628
|
const cardDisclaimer = useMemo19(() => {
|
|
@@ -21324,16 +21380,6 @@ import { createPortal as createPortal12 } from "react-dom";
|
|
|
21324
21380
|
|
|
21325
21381
|
// src/hooks/usePaymentSources.ts
|
|
21326
21382
|
import { FlagKey as FlagKey25, isNotNullish as isNotNullish9 } from "@funkit/utils";
|
|
21327
|
-
|
|
21328
|
-
// src/utils/customer.ts
|
|
21329
|
-
function isKatanaEarnFlow({
|
|
21330
|
-
apiKey,
|
|
21331
|
-
checkoutConfig
|
|
21332
|
-
}) {
|
|
21333
|
-
return isKatanaCustomer(apiKey) && !!checkoutConfig && isCheckoutPostActionRequired(checkoutConfig);
|
|
21334
|
-
}
|
|
21335
|
-
|
|
21336
|
-
// src/hooks/usePaymentSources.ts
|
|
21337
21383
|
function useRemainingMeshExchangeConnections(selected) {
|
|
21338
21384
|
const { getActiveConnection } = useFunkitMesh();
|
|
21339
21385
|
const supportedExchanges = useSupportedExchanges();
|
|
@@ -21367,8 +21413,9 @@ function usePaymentMethodEnablement({
|
|
|
21367
21413
|
const isCardFlagEnabled = useFlag(FlagKey25.EnableCard);
|
|
21368
21414
|
const isBrokerageFlagEnabled = useFlag(FlagKey25.EnableBrokerage);
|
|
21369
21415
|
const isKatanaEarnFlowAction = isKatanaEarnFlow({ apiKey, checkoutConfig });
|
|
21416
|
+
const isUsKatanaUser = useIsUsKatanaUser();
|
|
21370
21417
|
const isFiatEnabled = isFiatFlagEnabled && !isKatanaEarnFlowAction;
|
|
21371
|
-
const isTokenTransferEnabled = isTokenTransferFlagEnabled && !isKatanaEarnFlowAction;
|
|
21418
|
+
const isTokenTransferEnabled = isTokenTransferFlagEnabled && !isKatanaEarnFlowAction && !isUsKatanaUser;
|
|
21372
21419
|
const isBrokerageEnabled = isBrokerageFlagEnabled && !isKatanaEarnFlowAction;
|
|
21373
21420
|
const isCardEnabled = isCardFlagEnabled && !isKatanaEarnFlowAction && (uiCustomizations?.paymentMethods?.isCardEnabled ?? true);
|
|
21374
21421
|
return {
|
|
@@ -21400,7 +21447,8 @@ var usePaymentSources = (paymentMethodInfo, targetChainId, checkoutConfig) => {
|
|
|
21400
21447
|
matchingFiatAccount,
|
|
21401
21448
|
bridgeCustomer: allFiatAccounts.bridgeCustomer
|
|
21402
21449
|
}) : null;
|
|
21403
|
-
const
|
|
21450
|
+
const showBalanceOption = isKatanaCustomer(apiKey) || hasUsableBalance;
|
|
21451
|
+
const connectedAccountInfo = paymentMethodInfo?.paymentMethod !== "balance" /* ACCOUNT_BALANCE */ && isUserLoggedIn && showBalanceOption ? accountPaymentMethodInfo : null;
|
|
21404
21452
|
const connected = [
|
|
21405
21453
|
paymentMethodInfo,
|
|
21406
21454
|
connectedAccountInfo,
|
|
@@ -27870,7 +27918,8 @@ var parseDisclaimer = (checkout, onHelp) => {
|
|
|
27870
27918
|
|
|
27871
27919
|
// src/modals/CheckoutModal/TransferToken/DirectExecutionNotification.tsx
|
|
27872
27920
|
import React250 from "react";
|
|
27873
|
-
var mapDirectExecutionStateToNotificationStatus = (isDelayed2, isRefunded, isCompleted, isFailed) => {
|
|
27921
|
+
var mapDirectExecutionStateToNotificationStatus = (isProcessing, isDelayed2, isRefunded, isCompleted, isFailed) => {
|
|
27922
|
+
if (isProcessing) return "processing";
|
|
27874
27923
|
if (isDelayed2) return "delayed";
|
|
27875
27924
|
if (isCompleted) return "completed";
|
|
27876
27925
|
if (isRefunded) return "expired";
|
|
@@ -27883,10 +27932,11 @@ var DirectExecutionNotification = ({
|
|
|
27883
27932
|
onHelp
|
|
27884
27933
|
}) => {
|
|
27885
27934
|
const { initSettings } = directExecution.clientMetadata;
|
|
27886
|
-
const { isDelayed: isDelayed2, isRefunded, isCompleted, isFailed } = useCheckoutDirectExecutionHistory({
|
|
27935
|
+
const { isProcessing, isDelayed: isDelayed2, isRefunded, isCompleted, isFailed } = useCheckoutDirectExecutionHistory({
|
|
27887
27936
|
initDirectExecution: directExecution
|
|
27888
27937
|
});
|
|
27889
27938
|
const notificationStatus = mapDirectExecutionStateToNotificationStatus(
|
|
27939
|
+
isProcessing,
|
|
27890
27940
|
isDelayed2,
|
|
27891
27941
|
isRefunded,
|
|
27892
27942
|
isCompleted,
|
|
@@ -27897,6 +27947,7 @@ var DirectExecutionNotification = ({
|
|
|
27897
27947
|
FunNotificationBanner,
|
|
27898
27948
|
{
|
|
27899
27949
|
description: parseDescription2(
|
|
27950
|
+
isProcessing,
|
|
27900
27951
|
isDelayed2,
|
|
27901
27952
|
isRefunded,
|
|
27902
27953
|
isCompleted,
|
|
@@ -27934,8 +27985,8 @@ var parseTitle = (isDelayed2, isRefunded, isCompleted, isFailed) => {
|
|
|
27934
27985
|
if (isFailed || isRefunded) return "Didn't complete";
|
|
27935
27986
|
return "Deposit received and processing...";
|
|
27936
27987
|
};
|
|
27937
|
-
var parseDescription2 = (isDelayed2, isRefunded, isCompleted, isFailed) => {
|
|
27938
|
-
if (isDelayed2) {
|
|
27988
|
+
var parseDescription2 = (isProcessing, isDelayed2, isRefunded, isCompleted, isFailed) => {
|
|
27989
|
+
if (isProcessing || isDelayed2) {
|
|
27939
27990
|
return "Your deposit will be credited to your account shortly.";
|
|
27940
27991
|
}
|
|
27941
27992
|
if (isCompleted) {
|
|
@@ -30075,7 +30126,7 @@ function setFunkitConnectVersion({ version }) {
|
|
|
30075
30126
|
localStorage.setItem(storageKey5, version);
|
|
30076
30127
|
}
|
|
30077
30128
|
function getCurrentSdkVersion() {
|
|
30078
|
-
return "5.5.
|
|
30129
|
+
return "5.5.4";
|
|
30079
30130
|
}
|
|
30080
30131
|
function useFingerprint() {
|
|
30081
30132
|
const fingerprint = useCallback49(() => {
|
|
@@ -262,6 +262,21 @@ export declare const flagConfig: {
|
|
|
262
262
|
values: string[];
|
|
263
263
|
}[];
|
|
264
264
|
value: true;
|
|
265
|
+
if_all?: undefined;
|
|
266
|
+
} | {
|
|
267
|
+
if_all: ({
|
|
268
|
+
key: "userId";
|
|
269
|
+
type: "pctRollout";
|
|
270
|
+
pct: number;
|
|
271
|
+
values?: undefined;
|
|
272
|
+
} | {
|
|
273
|
+
key: "apiKey";
|
|
274
|
+
type: "isAnyOf";
|
|
275
|
+
values: string[];
|
|
276
|
+
pct?: undefined;
|
|
277
|
+
})[];
|
|
278
|
+
if_any: never[];
|
|
279
|
+
value: true;
|
|
265
280
|
} | {
|
|
266
281
|
if_any: {
|
|
267
282
|
key: "userId";
|
|
@@ -269,6 +284,7 @@ export declare const flagConfig: {
|
|
|
269
284
|
pct: number;
|
|
270
285
|
}[];
|
|
271
286
|
value: false;
|
|
287
|
+
if_all?: undefined;
|
|
272
288
|
})[];
|
|
273
289
|
};
|
|
274
290
|
meld_quick_options: {
|
|
@@ -2,66 +2,60 @@
|
|
|
2
2
|
import {
|
|
3
3
|
zealWallet
|
|
4
4
|
} from "./chunk-JROWU5BP.js";
|
|
5
|
-
import {
|
|
6
|
-
xdefiWallet
|
|
7
|
-
} from "./chunk-NO7XMBB5.js";
|
|
8
|
-
import {
|
|
9
|
-
zerionWallet
|
|
10
|
-
} from "./chunk-ETTNDQQG.js";
|
|
11
|
-
import {
|
|
12
|
-
tahoWallet
|
|
13
|
-
} from "./chunk-6P2EMPZI.js";
|
|
14
5
|
import {
|
|
15
6
|
subWallet
|
|
16
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-AD2KIJB6.js";
|
|
17
8
|
import {
|
|
18
9
|
talismanWallet
|
|
19
10
|
} from "./chunk-ABFSXBE6.js";
|
|
20
11
|
import {
|
|
21
12
|
tokenPocketWallet
|
|
22
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-IDKVN5CF.js";
|
|
23
14
|
import {
|
|
24
15
|
tokenaryWallet
|
|
25
16
|
} from "./chunk-SLOIIJGP.js";
|
|
26
|
-
import {
|
|
27
|
-
trustWallet
|
|
28
|
-
} from "./chunk-IPOC2VJX.js";
|
|
29
17
|
import {
|
|
30
18
|
uniswapWallet
|
|
31
19
|
} from "./chunk-LH7BMNFZ.js";
|
|
20
|
+
import {
|
|
21
|
+
omniWallet
|
|
22
|
+
} from "./chunk-7CUY5G6R.js";
|
|
32
23
|
import {
|
|
33
24
|
walletConnectWallet
|
|
34
25
|
} from "./chunk-NP5QGWNL.js";
|
|
35
26
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
27
|
+
trustWallet
|
|
28
|
+
} from "./chunk-ISIBREBO.js";
|
|
38
29
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
30
|
+
xdefiWallet
|
|
31
|
+
} from "./chunk-NO7XMBB5.js";
|
|
32
|
+
import {
|
|
33
|
+
zerionWallet
|
|
34
|
+
} from "./chunk-AXWP3GD4.js";
|
|
35
|
+
import {
|
|
36
|
+
ramperWallet
|
|
37
|
+
} from "./chunk-PIUNLQJG.js";
|
|
41
38
|
import {
|
|
42
39
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
40
|
+
} from "./chunk-2UCNRD7H.js";
|
|
44
41
|
import {
|
|
45
42
|
roninWallet
|
|
46
|
-
} from "./chunk-
|
|
43
|
+
} from "./chunk-63YLN6R5.js";
|
|
47
44
|
import {
|
|
48
|
-
|
|
49
|
-
} from "./chunk-
|
|
50
|
-
import {
|
|
51
|
-
ramperWallet
|
|
52
|
-
} from "./chunk-PIUNLQJG.js";
|
|
45
|
+
safeWallet
|
|
46
|
+
} from "./chunk-BQQQL6UD.js";
|
|
53
47
|
import {
|
|
54
48
|
safeheronWallet
|
|
55
49
|
} from "./chunk-R6RWZRFF.js";
|
|
56
50
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
51
|
+
safepalWallet
|
|
52
|
+
} from "./chunk-MSFKSQBY.js";
|
|
59
53
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
54
|
+
tahoWallet
|
|
55
|
+
} from "./chunk-6P2EMPZI.js";
|
|
62
56
|
import {
|
|
63
|
-
|
|
64
|
-
} from "./chunk-
|
|
57
|
+
frontierWallet
|
|
58
|
+
} from "./chunk-3S2U24BJ.js";
|
|
65
59
|
import {
|
|
66
60
|
mewWallet
|
|
67
61
|
} from "./chunk-V57WLZEE.js";
|
|
@@ -70,84 +64,90 @@ import {
|
|
|
70
64
|
} from "./chunk-ADIXAKUL.js";
|
|
71
65
|
import {
|
|
72
66
|
okxWallet
|
|
73
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-4WEHDI4Y.js";
|
|
74
68
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
69
|
+
imTokenWallet
|
|
70
|
+
} from "./chunk-COZ7MIQS.js";
|
|
77
71
|
import {
|
|
78
72
|
oneInchWallet
|
|
79
73
|
} from "./chunk-OESTDX6I.js";
|
|
80
74
|
import {
|
|
81
75
|
oneKeyWallet
|
|
82
76
|
} from "./chunk-4AD7VI2P.js";
|
|
77
|
+
import {
|
|
78
|
+
phantomWallet
|
|
79
|
+
} from "./chunk-ZSVTX6EK.js";
|
|
80
|
+
import {
|
|
81
|
+
rabbyWallet
|
|
82
|
+
} from "./chunk-BVX4XGNP.js";
|
|
83
83
|
import {
|
|
84
84
|
frameWallet
|
|
85
85
|
} from "./chunk-ZMYVTWDF.js";
|
|
86
86
|
import {
|
|
87
87
|
foxWallet
|
|
88
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-LMZMXEXL.js";
|
|
89
89
|
import {
|
|
90
90
|
gateWallet
|
|
91
|
-
} from "./chunk-
|
|
92
|
-
import {
|
|
93
|
-
imTokenWallet
|
|
94
|
-
} from "./chunk-COZ7MIQS.js";
|
|
95
|
-
import {
|
|
96
|
-
frontierWallet
|
|
97
|
-
} from "./chunk-HKV7EMYZ.js";
|
|
91
|
+
} from "./chunk-GSOYKKIS.js";
|
|
98
92
|
import {
|
|
99
93
|
injectedWallet
|
|
100
94
|
} from "./chunk-VCVVV2K7.js";
|
|
101
95
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
96
|
+
ledgerWallet
|
|
97
|
+
} from "./chunk-BRBKM4PW.js";
|
|
104
98
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
99
|
+
kresusWallet
|
|
100
|
+
} from "./chunk-MJXPRJZT.js";
|
|
107
101
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
102
|
+
metaMaskWallet
|
|
103
|
+
} from "./chunk-G73C6P5P.js";
|
|
110
104
|
import {
|
|
111
105
|
clvWallet
|
|
112
|
-
} from "./chunk-
|
|
106
|
+
} from "./chunk-KR6JBW5E.js";
|
|
113
107
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
108
|
+
coinbaseWallet
|
|
109
|
+
} from "./chunk-H4IRCEZN.js";
|
|
110
|
+
import {
|
|
111
|
+
bitgetWallet
|
|
112
|
+
} from "./chunk-A5APNTGL.js";
|
|
113
|
+
import {
|
|
114
|
+
coreWallet
|
|
115
|
+
} from "./chunk-HBA36GW3.js";
|
|
116
116
|
import {
|
|
117
117
|
dawnWallet
|
|
118
118
|
} from "./chunk-LN7OD5EC.js";
|
|
119
119
|
import {
|
|
120
|
-
|
|
121
|
-
} from "./chunk-
|
|
120
|
+
coin98Wallet
|
|
121
|
+
} from "./chunk-DTRYS3MO.js";
|
|
122
122
|
import {
|
|
123
123
|
enkryptWallet
|
|
124
124
|
} from "./chunk-SJTXS4ZW.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
126
|
+
desigWallet
|
|
127
|
+
} from "./chunk-CTU6JCOK.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-WSQ2YJO2.js";
|
|
131
131
|
import {
|
|
132
132
|
bifrostWallet
|
|
133
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-W6N74MS3.js";
|
|
134
134
|
import {
|
|
135
135
|
bitskiWallet
|
|
136
136
|
} from "./chunk-P74YPRF6.js";
|
|
137
137
|
import {
|
|
138
|
-
|
|
139
|
-
} from "./chunk-
|
|
138
|
+
bitverseWallet
|
|
139
|
+
} from "./chunk-3HZRRP4Y.js";
|
|
140
140
|
import {
|
|
141
141
|
bloomWallet
|
|
142
142
|
} from "./chunk-S27IADFU.js";
|
|
143
143
|
import {
|
|
144
144
|
braveWallet
|
|
145
145
|
} from "./chunk-PB254NQ4.js";
|
|
146
|
-
import "./chunk-WRA2DVJ7.js";
|
|
147
146
|
import {
|
|
148
|
-
|
|
149
|
-
} from "./chunk-
|
|
147
|
+
bybitWallet
|
|
148
|
+
} from "./chunk-6ONTSPEY.js";
|
|
150
149
|
import "./chunk-23WIEY36.js";
|
|
150
|
+
import "./chunk-WRA2DVJ7.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": "5.5.
|
|
3
|
+
"version": "5.5.4",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -93,11 +93,11 @@
|
|
|
93
93
|
"use-debounce": "^10.0.5",
|
|
94
94
|
"uuid": "^9.0.1",
|
|
95
95
|
"@funkit/api-base": "1.9.2",
|
|
96
|
-
"@funkit/chains": "0.3.1",
|
|
97
|
-
"@funkit/core": "2.3.24",
|
|
98
96
|
"@funkit/utils": "1.1.2",
|
|
99
97
|
"@funkit/wagmi-tools": "3.0.46",
|
|
100
|
-
"@funkit/fun-relay": "0.1.7"
|
|
98
|
+
"@funkit/fun-relay": "0.1.7",
|
|
99
|
+
"@funkit/core": "2.3.24",
|
|
100
|
+
"@funkit/chains": "0.3.1"
|
|
101
101
|
},
|
|
102
102
|
"repository": {
|
|
103
103
|
"type": "git",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function useIsUsBankrUser(): boolean;
|