@funkit/connect 3.1.0 → 3.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 +10 -0
- package/dist/components/FunBottomBar/FunBottomBar.css.d.ts +1 -0
- package/dist/components/FunButton/FunButton.d.ts +3 -1
- package/dist/components/FunNotification/FunNotification.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +36 -12
- package/dist/modals/CheckoutModal/useSourceAssetConfirm.d.ts +1 -1
- package/dist/providers/ModalContext.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 +63 -63
- 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/wallets/walletConnectors/chunk-4HKPVECK.js +0 -95
- package/dist/wallets/walletConnectors/chunk-4K3EKHXR.js +0 -71
- package/dist/wallets/walletConnectors/chunk-5MVCKMZT.js +0 -94
- package/dist/wallets/walletConnectors/chunk-5NZLWT3Y.js +0 -73
- package/dist/wallets/walletConnectors/chunk-B5D7DYVV.js +0 -101
- package/dist/wallets/walletConnectors/chunk-HLH777AC.js +0 -108
- package/dist/wallets/walletConnectors/chunk-HMDUVRZP.js +0 -98
- package/dist/wallets/walletConnectors/chunk-KDGMYRMC.js +0 -102
- package/dist/wallets/walletConnectors/chunk-VU6B3HMD.js +0 -96
- package/dist/wallets/walletConnectors/chunk-YRK6XWL6.js +0 -149
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 3.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b35d64: refactor: move react-query to peerDeps
|
|
8
|
+
- 4f8422e: fix: use correct typing for openModal
|
|
9
|
+
- e6bbeaf: refactor: change input amount related text color to secondary
|
|
10
|
+
- e6bbeaf: refactor: always display divider in bottom
|
|
11
|
+
- 3d160a2: refactor: fix StrictMode behavior
|
|
12
|
+
|
|
3
13
|
## 3.1.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { BoxProps } from '../Box/Box';
|
|
2
3
|
export type FunButtonTypes = 'primary' | 'secondary' | 'tertiary';
|
|
3
4
|
export interface FunButtonProps {
|
|
4
5
|
id?: string;
|
|
@@ -8,5 +9,6 @@ export interface FunButtonProps {
|
|
|
8
9
|
isDisabled?: boolean;
|
|
9
10
|
isLoading?: boolean;
|
|
10
11
|
loaderSize?: number;
|
|
12
|
+
borderRadius?: BoxProps['borderRadius'];
|
|
11
13
|
}
|
|
12
|
-
export declare function FunButton({ id, title, onClick, isDisabled, type, isLoading, loaderSize, }: FunButtonProps): React.JSX.Element;
|
|
14
|
+
export declare function FunButton({ id, title, onClick, isDisabled, type, isLoading, loaderSize, borderRadius, }: FunButtonProps): React.JSX.Element;
|
|
@@ -11,7 +11,7 @@ interface FunNotificationProps {
|
|
|
11
11
|
containerProps?: React.ComponentProps<typeof Box>;
|
|
12
12
|
isVisible?: boolean;
|
|
13
13
|
}
|
|
14
|
-
type FunNotificationType = 'default' | 'error' | 'warning';
|
|
14
|
+
type FunNotificationType = 'default' | 'error' | 'warning' | 'hint';
|
|
15
15
|
/**
|
|
16
16
|
* A notification/message component with height resizing animation.
|
|
17
17
|
* Control visibility by enabling/disabling `isVisible` prop instead of doing an outer conditional rendering.
|
package/dist/index.d.ts
CHANGED
|
@@ -27,4 +27,5 @@ export type { PurifiedCheckoutHistoryItem } from './utils/purifyCheckoutHistoryI
|
|
|
27
27
|
export { getDefaultWallets } from './wallets/getDefaultWallets';
|
|
28
28
|
export type { FunkitConnectWalletConnectParameters, Wallet, WalletDetailsParams, WalletList, } from './wallets/Wallet';
|
|
29
29
|
export { useFunkitAccount, useFunkitDisconnect, useFunkitSwitchChains, } from './providers/GeneralWalletProvider';
|
|
30
|
+
export { SelectedHomeTab } from './modals/ProfileDetails/FunProfileViews/Home';
|
|
30
31
|
export { isDydxAddress } from './utils/isDydxAddress';
|
package/dist/index.js
CHANGED
|
@@ -2113,7 +2113,9 @@ function FunButton({
|
|
|
2113
2113
|
isDisabled = false,
|
|
2114
2114
|
type = "primary",
|
|
2115
2115
|
isLoading = false,
|
|
2116
|
-
loaderSize = 14
|
|
2116
|
+
loaderSize = 14,
|
|
2117
|
+
// TODO: remove this
|
|
2118
|
+
borderRadius
|
|
2117
2119
|
}) {
|
|
2118
2120
|
const isTertiary = type === "tertiary";
|
|
2119
2121
|
const isSecondary = type === "secondary";
|
|
@@ -2136,7 +2138,7 @@ function FunButton({
|
|
|
2136
2138
|
id,
|
|
2137
2139
|
as: "button",
|
|
2138
2140
|
onClick: !isDisabled ? onClick : void 0,
|
|
2139
|
-
borderRadius: isTertiary ? "8" : "10",
|
|
2141
|
+
borderRadius: borderRadius ?? (isTertiary ? "8" : "10"),
|
|
2140
2142
|
display: "block",
|
|
2141
2143
|
...buttonPaddings,
|
|
2142
2144
|
style: {
|
|
@@ -2289,6 +2291,7 @@ function FunPoweredTagline() {
|
|
|
2289
2291
|
}
|
|
2290
2292
|
|
|
2291
2293
|
// src/components/FunBottomBar/FunBottomBar.css.ts
|
|
2294
|
+
var BOTTOM_BAR_TOP_PADDING = 18;
|
|
2292
2295
|
var topSectionDynamicPadding = "n5qwi0";
|
|
2293
2296
|
|
|
2294
2297
|
// src/components/FunBottomBar/FunBottomBar.tsx
|
|
@@ -2300,7 +2303,17 @@ var FunBottomBar = ({
|
|
|
2300
2303
|
const showTagline = flags.getBool("show_powered_tagline" /* ShowPoweredTagline */, false);
|
|
2301
2304
|
const defaultBottomSection = showTagline ? /* @__PURE__ */ React24.createElement(FunPoweredTagline, null) : void 0;
|
|
2302
2305
|
const bottomSectionComponent = bottomSection ?? defaultBottomSection;
|
|
2303
|
-
return
|
|
2306
|
+
return (
|
|
2307
|
+
// TODO: make this more disciplined
|
|
2308
|
+
// if there is no tagline, the bottom bar padding is 12px
|
|
2309
|
+
/* @__PURE__ */ React24.createElement(Box, { style: showTagline ? {} : { margin: "0 -6px" } }, /* @__PURE__ */ React24.createElement(Box, { className: topSectionDynamicPadding }, topSection), /* @__PURE__ */ React24.createElement(Box, null, /* @__PURE__ */ React24.createElement(
|
|
2310
|
+
FunButton,
|
|
2311
|
+
{
|
|
2312
|
+
...actionButtonProps,
|
|
2313
|
+
borderRadius: showTagline ? void 0 : "24"
|
|
2314
|
+
}
|
|
2315
|
+
)), bottomSectionComponent && /* @__PURE__ */ React24.createElement(Box, { paddingTop: "8" }, bottomSectionComponent))
|
|
2316
|
+
);
|
|
2304
2317
|
};
|
|
2305
2318
|
|
|
2306
2319
|
// src/components/FunButton/FunBackButton.tsx
|
|
@@ -2810,6 +2823,7 @@ var DialogContent = ({
|
|
|
2810
2823
|
const paddingRight = Number(boxProps.paddingRight ?? paddingLeft) - SCROLL_BAR_WIDTH;
|
|
2811
2824
|
const displayTopDivider = withTopDivider !== "never" && (withTopDivider === "always" || hasTopDivider);
|
|
2812
2825
|
const displayBottomDivider = withBottomDivider !== "never" && (withBottomDivider === "always" || hasBottomDivider);
|
|
2826
|
+
const extraContentTopPadding = withTopDivider === "always";
|
|
2813
2827
|
return /* @__PURE__ */ React31.createElement(React31.Fragment, null, displayTopDivider && /* @__PURE__ */ React31.createElement(
|
|
2814
2828
|
Box,
|
|
2815
2829
|
{
|
|
@@ -2822,6 +2836,7 @@ var DialogContent = ({
|
|
|
2822
2836
|
), /* @__PURE__ */ React31.createElement(
|
|
2823
2837
|
Box,
|
|
2824
2838
|
{
|
|
2839
|
+
paddingTop: extraContentTopPadding ? `${BOTTOM_BAR_TOP_PADDING}` : void 0,
|
|
2825
2840
|
paddingBottom: paddingBottom ?? isScrollable ? "18" : void 0,
|
|
2826
2841
|
paddingLeft,
|
|
2827
2842
|
ref,
|
|
@@ -9033,7 +9048,7 @@ function FunNotification({
|
|
|
9033
9048
|
{
|
|
9034
9049
|
size: "10",
|
|
9035
9050
|
weight: "medium",
|
|
9036
|
-
color: type === "error" ? "error" : type === "warning" ? "standby" : "primaryText",
|
|
9051
|
+
color: type === "error" ? "error" : type === "warning" ? "standby" : type === "hint" ? "secondaryText" : "primaryText",
|
|
9037
9052
|
textAlign: "center",
|
|
9038
9053
|
...textProps
|
|
9039
9054
|
},
|
|
@@ -10533,6 +10548,11 @@ var HomeTokenBalanceDisplayRowSkeleton = () => {
|
|
|
10533
10548
|
};
|
|
10534
10549
|
|
|
10535
10550
|
// src/modals/ProfileDetails/FunProfileViews/Home/index.tsx
|
|
10551
|
+
var SelectedHomeTab = /* @__PURE__ */ ((SelectedHomeTab2) => {
|
|
10552
|
+
SelectedHomeTab2["ASSETS"] = "assets";
|
|
10553
|
+
SelectedHomeTab2["CHECKOUTS"] = "checkouts";
|
|
10554
|
+
return SelectedHomeTab2;
|
|
10555
|
+
})(SelectedHomeTab || {});
|
|
10536
10556
|
var ProfileTitleSection = ({
|
|
10537
10557
|
animateOut,
|
|
10538
10558
|
account,
|
|
@@ -13291,7 +13311,7 @@ function FunPaymentMethods({
|
|
|
13291
13311
|
isUpdatePossible: "balance" /* ACCOUNT_BALANCE */ !== selectedOption || !isWalletEmpty,
|
|
13292
13312
|
showNotification: Boolean(hasQuoteError || continueErrorText),
|
|
13293
13313
|
notificationText: continueErrorText || quoteMessage,
|
|
13294
|
-
notificationType: hasQuoteError ? "error" : !isContinuable ? "
|
|
13314
|
+
notificationType: hasQuoteError ? "error" : !isContinuable ? "hint" : "default"
|
|
13295
13315
|
};
|
|
13296
13316
|
}, [
|
|
13297
13317
|
recommendedCheckoutUsdAmountWithMaxUsdUsableAsset,
|
|
@@ -14417,7 +14437,7 @@ function InputAmount({
|
|
|
14417
14437
|
FunNotification,
|
|
14418
14438
|
{
|
|
14419
14439
|
isVisible: !!inputLimitError,
|
|
14420
|
-
type: "
|
|
14440
|
+
type: "hint",
|
|
14421
14441
|
description: inputLimitError
|
|
14422
14442
|
}
|
|
14423
14443
|
), showAssetAvailableElement && !!targetAssetInWallet.totalUsdValue && /* @__PURE__ */ React150.createElement(
|
|
@@ -15411,7 +15431,7 @@ function FunAssetItemSkeleton() {
|
|
|
15411
15431
|
}
|
|
15412
15432
|
|
|
15413
15433
|
// src/modals/CheckoutModal/useSourceAssetConfirm.tsx
|
|
15414
|
-
import React165, { useCallback as useCallback28, useEffect as useEffect32,
|
|
15434
|
+
import React165, { useCallback as useCallback28, useEffect as useEffect32, useState as useState41 } from "react";
|
|
15415
15435
|
|
|
15416
15436
|
// src/hooks/useCheckoutAccountBalanceTransfer.ts
|
|
15417
15437
|
import { useCallback as useCallback27 } from "react";
|
|
@@ -15581,13 +15601,16 @@ function useSourceAssetConfirm(checkoutId, setPreloadedQuoteData) {
|
|
|
15581
15601
|
onSourceAssetConfirmed
|
|
15582
15602
|
};
|
|
15583
15603
|
}
|
|
15604
|
+
function useHackyTriggerWorkaroundReactDevBrainExplode() {
|
|
15605
|
+
const [trigger, setTriggerImpl] = useState41(0);
|
|
15606
|
+
const setTrigger = useEffectEvent(() => setTriggerImpl((i) => i % 100 + 1));
|
|
15607
|
+
return [trigger, setTrigger];
|
|
15608
|
+
}
|
|
15584
15609
|
function useTriggerQuoteAndOtherStuffsWithExtremeCaution(checkoutId, onSuccess, setPreloadedQuoteData) {
|
|
15585
|
-
const
|
|
15586
|
-
const [assetRefresh, triggerAssetConfirm] = useSymbolRefresh_default();
|
|
15610
|
+
const [assetRefresh, triggerAssetConfirm] = useHackyTriggerWorkaroundReactDevBrainExplode();
|
|
15587
15611
|
const { isSourceAssetConfirming, onSourceAssetConfirmed } = useSourceAssetConfirm(checkoutId, setPreloadedQuoteData);
|
|
15588
15612
|
useEffect32(() => {
|
|
15589
|
-
if (
|
|
15590
|
-
isFirstRender.current = false;
|
|
15613
|
+
if (assetRefresh === 0) {
|
|
15591
15614
|
return;
|
|
15592
15615
|
}
|
|
15593
15616
|
onSourceAssetConfirmed().then(onSuccess);
|
|
@@ -17158,7 +17181,7 @@ function useModalStateValueWithProp() {
|
|
|
17158
17181
|
isModalOpen,
|
|
17159
17182
|
prop,
|
|
17160
17183
|
openModal: useCallback35((prop2) => {
|
|
17161
|
-
if (prop2
|
|
17184
|
+
if (prop2 != null) setProp(prop2);
|
|
17162
17185
|
setModalOpen(true);
|
|
17163
17186
|
}, [])
|
|
17164
17187
|
};
|
|
@@ -19800,6 +19823,7 @@ export {
|
|
|
19800
19823
|
FunkitSocialLoginMethod,
|
|
19801
19824
|
NATIVE_TOKEN,
|
|
19802
19825
|
PaymentMethod,
|
|
19826
|
+
SelectedHomeTab,
|
|
19803
19827
|
__private__,
|
|
19804
19828
|
createAuthenticationAdapter,
|
|
19805
19829
|
createFunkitWagmiConfig,
|
|
@@ -9,7 +9,7 @@ export type OnSourceAssetConfirmed = (confirmed: SourceAssetConfirmed | undefine
|
|
|
9
9
|
/**
|
|
10
10
|
*
|
|
11
11
|
* Note: this hook is EXTREMELY confusing in what is doing
|
|
12
|
-
* first, it
|
|
12
|
+
* first, it useHackyTriggerWorkaroundReactDevBrainExplode to wait React's setState
|
|
13
13
|
* and read the latest update of the checkoutItem
|
|
14
14
|
* second, it will trigger a quote request to the backend
|
|
15
15
|
* and write the value back to the checkoutItem
|
|
@@ -11,7 +11,7 @@ export declare function useModalState(): {
|
|
|
11
11
|
};
|
|
12
12
|
export declare function useAccountModal(): {
|
|
13
13
|
accountModalOpen: boolean;
|
|
14
|
-
openAccountModal: ((tab
|
|
14
|
+
openAccountModal: ((tab?: SelectedHomeTab | null) => void) | undefined;
|
|
15
15
|
};
|
|
16
16
|
export declare function useChainModal(): {
|
|
17
17
|
chainModalOpen: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bifrostWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-KL5Z3XHJ.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
bifrostWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
bitgetWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-IEVZW3XR.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
bitgetWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-LCOUKF2U.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
frontierWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
gateWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-YIJ5ULO3.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
gateWallet
|
|
10
10
|
};
|
|
@@ -1,91 +1,97 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
walletConnectWallet
|
|
4
|
+
} from "./chunk-OFU3PEVT.js";
|
|
5
|
+
import {
|
|
6
|
+
zerionWallet
|
|
7
|
+
} from "./chunk-DBP432DI.js";
|
|
2
8
|
import {
|
|
3
9
|
zealWallet
|
|
4
10
|
} from "./chunk-BUUV6BS4.js";
|
|
5
11
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
12
|
+
subWallet
|
|
13
|
+
} from "./chunk-N3ELQYCY.js";
|
|
8
14
|
import {
|
|
9
|
-
|
|
10
|
-
} from "./chunk-
|
|
15
|
+
tahoWallet
|
|
16
|
+
} from "./chunk-6AYBA6IH.js";
|
|
11
17
|
import {
|
|
12
|
-
|
|
13
|
-
} from "./chunk-
|
|
18
|
+
talismanWallet
|
|
19
|
+
} from "./chunk-OTXHQMSG.js";
|
|
14
20
|
import {
|
|
15
21
|
tokenaryWallet
|
|
16
22
|
} from "./chunk-FAYEL4JP.js";
|
|
17
23
|
import {
|
|
18
|
-
|
|
19
|
-
} from "./chunk-
|
|
24
|
+
tokenPocketWallet
|
|
25
|
+
} from "./chunk-ISJYPD3T.js";
|
|
20
26
|
import {
|
|
21
|
-
|
|
22
|
-
} from "./chunk-
|
|
27
|
+
trustWallet
|
|
28
|
+
} from "./chunk-X45WXZDO.js";
|
|
23
29
|
import {
|
|
24
30
|
uniswapWallet
|
|
25
31
|
} from "./chunk-QFRZGNNV.js";
|
|
26
|
-
import {
|
|
27
|
-
ledgerWallet
|
|
28
|
-
} from "./chunk-ZMHCZCGS.js";
|
|
29
|
-
import {
|
|
30
|
-
subWallet
|
|
31
|
-
} from "./chunk-IR3YKU2N.js";
|
|
32
32
|
import {
|
|
33
33
|
xdefiWallet
|
|
34
34
|
} from "./chunk-RVIZMVFR.js";
|
|
35
|
+
import {
|
|
36
|
+
phantomWallet
|
|
37
|
+
} from "./chunk-KEVUI6AA.js";
|
|
38
|
+
import {
|
|
39
|
+
rabbyWallet
|
|
40
|
+
} from "./chunk-H5LLXNOI.js";
|
|
35
41
|
import {
|
|
36
42
|
ramperWallet
|
|
37
43
|
} from "./chunk-TKXQYHWJ.js";
|
|
38
|
-
import {
|
|
39
|
-
roninWallet
|
|
40
|
-
} from "./chunk-25VW5TZP.js";
|
|
41
44
|
import {
|
|
42
45
|
rainbowWallet
|
|
43
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-OHJBALD3.js";
|
|
47
|
+
import {
|
|
48
|
+
roninWallet
|
|
49
|
+
} from "./chunk-63YLN6R5.js";
|
|
44
50
|
import {
|
|
45
51
|
safeWallet
|
|
46
52
|
} from "./chunk-Z2QCE6O6.js";
|
|
47
53
|
import {
|
|
48
54
|
safepalWallet
|
|
49
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-AKAT37SI.js";
|
|
50
56
|
import {
|
|
51
|
-
|
|
52
|
-
} from "./chunk-
|
|
57
|
+
safeheronWallet
|
|
58
|
+
} from "./chunk-FCIRHRFH.js";
|
|
53
59
|
import {
|
|
54
|
-
|
|
55
|
-
} from "./chunk-
|
|
60
|
+
metaMaskWallet
|
|
61
|
+
} from "./chunk-ODRDT73B.js";
|
|
56
62
|
import {
|
|
57
|
-
|
|
58
|
-
} from "./chunk-
|
|
63
|
+
ledgerWallet
|
|
64
|
+
} from "./chunk-ZMHCZCGS.js";
|
|
59
65
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
66
|
+
mewWallet
|
|
67
|
+
} from "./chunk-CVYXTHZ6.js";
|
|
62
68
|
import {
|
|
63
69
|
oktoWallet
|
|
64
70
|
} from "./chunk-MBQTOALG.js";
|
|
71
|
+
import {
|
|
72
|
+
okxWallet
|
|
73
|
+
} from "./chunk-5HXH52SO.js";
|
|
65
74
|
import {
|
|
66
75
|
omniWallet
|
|
67
76
|
} from "./chunk-II6YBG2B.js";
|
|
68
77
|
import {
|
|
69
|
-
|
|
70
|
-
} from "./chunk-
|
|
78
|
+
oneInchWallet
|
|
79
|
+
} from "./chunk-I7MKK24W.js";
|
|
71
80
|
import {
|
|
72
81
|
oneKeyWallet
|
|
73
82
|
} from "./chunk-ZP2SV6KN.js";
|
|
74
83
|
import {
|
|
75
|
-
|
|
76
|
-
} from "./chunk-
|
|
77
|
-
import {
|
|
78
|
-
oneInchWallet
|
|
79
|
-
} from "./chunk-I7MKK24W.js";
|
|
84
|
+
frameWallet
|
|
85
|
+
} from "./chunk-KPVNJO3R.js";
|
|
80
86
|
import {
|
|
81
|
-
|
|
82
|
-
} from "./chunk-
|
|
87
|
+
foxWallet
|
|
88
|
+
} from "./chunk-WAOREEBE.js";
|
|
83
89
|
import {
|
|
84
90
|
frontierWallet
|
|
85
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-LCOUKF2U.js";
|
|
86
92
|
import {
|
|
87
|
-
|
|
88
|
-
} from "./chunk-
|
|
93
|
+
gateWallet
|
|
94
|
+
} from "./chunk-YIJ5ULO3.js";
|
|
89
95
|
import {
|
|
90
96
|
imTokenWallet
|
|
91
97
|
} from "./chunk-BMJOLT2N.js";
|
|
@@ -96,41 +102,38 @@ import {
|
|
|
96
102
|
kresusWallet
|
|
97
103
|
} from "./chunk-QQJKQCII.js";
|
|
98
104
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
101
|
-
import {
|
|
102
|
-
mewWallet
|
|
103
|
-
} from "./chunk-CVYXTHZ6.js";
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-3AZNOY75.js";
|
|
104
107
|
import {
|
|
105
108
|
clvWallet
|
|
106
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-UHHA5V52.js";
|
|
107
110
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
111
|
+
coin98Wallet
|
|
112
|
+
} from "./chunk-ZXGMW3OS.js";
|
|
110
113
|
import {
|
|
111
114
|
coinbaseWallet
|
|
112
115
|
} from "./chunk-PNEDRY6O.js";
|
|
113
116
|
import {
|
|
114
|
-
|
|
115
|
-
} from "./chunk-
|
|
117
|
+
coreWallet
|
|
118
|
+
} from "./chunk-MOOW2AOC.js";
|
|
116
119
|
import {
|
|
117
120
|
dawnWallet
|
|
118
121
|
} from "./chunk-KCTWDMQP.js";
|
|
119
|
-
import {
|
|
120
|
-
enkryptWallet
|
|
121
|
-
} from "./chunk-JJ4DXD7R.js";
|
|
122
122
|
import {
|
|
123
123
|
desigWallet
|
|
124
124
|
} from "./chunk-44CHUPEQ.js";
|
|
125
125
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
126
|
+
enkryptWallet
|
|
127
|
+
} from "./chunk-JJ4DXD7R.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-ZHFISYEQ.js";
|
|
131
131
|
import {
|
|
132
132
|
bifrostWallet
|
|
133
|
-
} from "./chunk-
|
|
133
|
+
} from "./chunk-KL5Z3XHJ.js";
|
|
134
|
+
import {
|
|
135
|
+
bitgetWallet
|
|
136
|
+
} from "./chunk-IEVZW3XR.js";
|
|
134
137
|
import {
|
|
135
138
|
bitskiWallet
|
|
136
139
|
} from "./chunk-OCCT5PIN.js";
|
|
@@ -141,14 +144,11 @@ import {
|
|
|
141
144
|
bloomWallet
|
|
142
145
|
} from "./chunk-J64P6XK3.js";
|
|
143
146
|
import "./chunk-RETKWSKD.js";
|
|
147
|
+
import "./chunk-23WIEY36.js";
|
|
144
148
|
import {
|
|
145
|
-
|
|
146
|
-
} from "./chunk-
|
|
147
|
-
import {
|
|
148
|
-
coin98Wallet
|
|
149
|
-
} from "./chunk-WAMHUVNP.js";
|
|
149
|
+
braveWallet
|
|
150
|
+
} from "./chunk-NUEOWEZS.js";
|
|
150
151
|
import "./chunk-WRA2DVJ7.js";
|
|
151
|
-
import "./chunk-23WIEY36.js";
|
|
152
152
|
export {
|
|
153
153
|
argentWallet,
|
|
154
154
|
bifrostWallet,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
metaMaskWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-ODRDT73B.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
metaMaskWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
okxWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-5HXH52SO.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
okxWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
rainbowWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-OHJBALD3.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
rainbowWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
tokenPocketWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-ISJYPD3T.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
tokenPocketWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
trustWallet
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-X45WXZDO.js";
|
|
5
5
|
import "../chunk-RETKWSKD.js";
|
|
6
|
-
import "../chunk-WRA2DVJ7.js";
|
|
7
6
|
import "../chunk-23WIEY36.js";
|
|
7
|
+
import "../chunk-WRA2DVJ7.js";
|
|
8
8
|
export {
|
|
9
9
|
trustWallet
|
|
10
10
|
};
|