@funkit/connect 2.0.4 → 2.0.5
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/index.js +19 -45
- package/dist/utils/flags/config.d.ts +0 -3
- package/dist/utils/flags/index.d.ts +0 -1
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +1 -1
- package/dist/wallets/walletConnectors/{chunk-32O7HVBJ.js → chunk-BXM2BUWT.js} +1 -0
- package/dist/wallets/walletConnectors/{chunk-3R3RNCGE.js → chunk-EO7KIAWM.js} +4 -3
- package/dist/wallets/walletConnectors/{chunk-5L2OLU3J.js → chunk-GXP3HLP7.js} +4 -3
- package/dist/wallets/walletConnectors/{chunk-WS4EM7AZ.js → chunk-HTIWZZPO.js} +4 -3
- package/dist/wallets/walletConnectors/{chunk-HXGBE5AH.js → chunk-LR37V45H.js} +1 -0
- package/dist/wallets/walletConnectors/{chunk-QS2J6MWB.js → chunk-NIVH7ULX.js} +1 -0
- package/dist/wallets/walletConnectors/{chunk-OUQ3ZF2W.js → chunk-VMTIFEE6.js} +4 -3
- package/dist/wallets/walletConnectors/{chunk-OMKARG6Y.js → chunk-WSILDNIW.js} +1 -0
- package/dist/wallets/walletConnectors/coreWallet/coreWallet.js +1 -1
- package/dist/wallets/walletConnectors/frameWallet/frameWallet.js +1 -1
- package/dist/wallets/walletConnectors/index.js +61 -61
- package/dist/wallets/walletConnectors/oneKeyWallet/oneKeyWallet.js +1 -1
- package/dist/wallets/walletConnectors/subWallet/subWallet.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 2.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 354b93f: fix(connect): show dYdX chain in history
|
|
8
|
+
- d661e43: chore: add missing rdns property to some wallets
|
|
9
|
+
- 77dd626: refactor: remove ConnectSignInShowSocialLabel flag
|
|
10
|
+
|
|
3
11
|
## 2.0.4
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -584,32 +584,6 @@ var memoize = (fn) => {
|
|
|
584
584
|
|
|
585
585
|
// src/utils/flags/config.ts
|
|
586
586
|
var flagConfig = {
|
|
587
|
-
["connect_sign_in_show_social_label" /* ConnectSignInShowSocialLabel */]: {
|
|
588
|
-
type: "boolean",
|
|
589
|
-
default_value: false,
|
|
590
|
-
overrides: [
|
|
591
|
-
{
|
|
592
|
-
if_any: [
|
|
593
|
-
{
|
|
594
|
-
key: "apiKey",
|
|
595
|
-
type: "isAnyOf",
|
|
596
|
-
values: ["Z9SZaOwpmE40KX61mUKWm5hrpGh7WHVkaTvQJpQk"]
|
|
597
|
-
}
|
|
598
|
-
],
|
|
599
|
-
value: true
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
if_any: [
|
|
603
|
-
{
|
|
604
|
-
key: "userId",
|
|
605
|
-
type: "pctRollout",
|
|
606
|
-
pct: 50
|
|
607
|
-
}
|
|
608
|
-
],
|
|
609
|
-
value: true
|
|
610
|
-
}
|
|
611
|
-
]
|
|
612
|
-
},
|
|
613
587
|
["select_payment_method_text" /* SelectPaymentMethodText */]: {
|
|
614
588
|
type: "string",
|
|
615
589
|
default_value: "Select Payment Method",
|
|
@@ -1269,7 +1243,7 @@ var chainMetadataByName = {
|
|
|
1269
1243
|
bscTestnet: { chainId: 97, ...bscIcon },
|
|
1270
1244
|
cronos: { chainId: 25, ...cronosIcon },
|
|
1271
1245
|
cronosTestnet: { chainId: 338, ...cronosIcon },
|
|
1272
|
-
dydxMainnet: { chainId: DYDX_MAINNET_CHAIN_ID, ...dydxIcon },
|
|
1246
|
+
dydxMainnet: { chainId: DYDX_MAINNET_CHAIN_ID, name: "dYdX", ...dydxIcon },
|
|
1273
1247
|
goerli: { chainId: 5, ...ethereumIcon },
|
|
1274
1248
|
hardhat: { chainId: 31337, ...hardhatIcon },
|
|
1275
1249
|
holesky: { chainId: 17e3, ...ethereumIcon },
|
|
@@ -8110,8 +8084,7 @@ function ChainLineItem({
|
|
|
8110
8084
|
chainIconSize,
|
|
8111
8085
|
gap = "12"
|
|
8112
8086
|
}) {
|
|
8113
|
-
const
|
|
8114
|
-
const chainItem = enabledChainMap[chainId];
|
|
8087
|
+
const chainItem = chainMetadataById[chainId];
|
|
8115
8088
|
if (!chainItem)
|
|
8116
8089
|
return null;
|
|
8117
8090
|
return /* @__PURE__ */ React76.createElement(Box, {
|
|
@@ -8671,29 +8644,37 @@ function FunCheckoutConfirmationStep({
|
|
|
8671
8644
|
WEB3_ACCOUNT_BALANCE_MESSAGE_GENERATOR[1 /* SWITCH_CHAIN */](chainName)
|
|
8672
8645
|
);
|
|
8673
8646
|
await (switchChainAsync == null ? void 0 : switchChainAsync({ chainId: parseInt(sourceAssetChainId) }));
|
|
8647
|
+
logger.log("handleWeb3AccountBalancePostCheckout_chainSwitched", {
|
|
8648
|
+
sourceAssetChainId,
|
|
8649
|
+
currentChain: latestChainId
|
|
8650
|
+
});
|
|
8674
8651
|
}
|
|
8675
8652
|
setPostCheckoutStepMessage(
|
|
8676
8653
|
WEB3_ACCOUNT_BALANCE_MESSAGE_GENERATOR[2 /* APPROVE_TRANSFER */]((checkoutItem == null ? void 0 : checkoutItem.selectedSourceAssetInfo.symbol) || "")
|
|
8677
8654
|
);
|
|
8678
8655
|
if (((_c2 = checkoutItem == null ? void 0 : checkoutItem.selectedSourceAssetInfo) == null ? void 0 : _c2.address) === NATIVE_TOKEN) {
|
|
8679
|
-
const
|
|
8656
|
+
const paramsNative = {
|
|
8680
8657
|
chainId: parseInt(sourceAssetChainId),
|
|
8681
8658
|
to: depositAddress,
|
|
8682
8659
|
value: sourceAssetAmountBaseUnit
|
|
8683
|
-
}
|
|
8684
|
-
logger.log("
|
|
8660
|
+
};
|
|
8661
|
+
logger.log("handleWeb3AccountBalancePostCheckout_native", paramsNative);
|
|
8662
|
+
const hash = await sendTransactionAsync(paramsNative);
|
|
8663
|
+
logger.log("handleWeb3AccountBalancePostCheckout_native_hash", {
|
|
8685
8664
|
hash,
|
|
8686
8665
|
sourceAssetAmountBaseUnit
|
|
8687
8666
|
});
|
|
8688
8667
|
} else {
|
|
8689
|
-
const
|
|
8668
|
+
const paramsErc20 = {
|
|
8690
8669
|
chainId: parseInt(sourceAssetChainId),
|
|
8691
8670
|
address: sourceAssetAddress,
|
|
8692
8671
|
abi: ERC20_ABI,
|
|
8693
8672
|
functionName: "transfer",
|
|
8694
8673
|
args: [depositAddress, sourceAssetAmountBaseUnit]
|
|
8695
|
-
}
|
|
8696
|
-
logger.log("
|
|
8674
|
+
};
|
|
8675
|
+
logger.log("handleWeb3AccountBalancePostCheckout_erc20", paramsErc20);
|
|
8676
|
+
const hash = await writeContractAsync(paramsErc20);
|
|
8677
|
+
logger.log("handleWeb3AccountBalancePostCheckout_erc20_hash", {
|
|
8697
8678
|
hash,
|
|
8698
8679
|
sourceAssetAmountBaseUnit
|
|
8699
8680
|
});
|
|
@@ -8705,6 +8686,7 @@ function FunCheckoutConfirmationStep({
|
|
|
8705
8686
|
checkoutItem == null ? void 0 : checkoutItem.selectedSourceAssetInfo.chainId,
|
|
8706
8687
|
(_n = checkoutItem == null ? void 0 : checkoutItem.selectedSourceAssetInfo) == null ? void 0 : _n.address,
|
|
8707
8688
|
checkoutItem == null ? void 0 : checkoutItem.selectedSourceAssetInfo.symbol,
|
|
8689
|
+
connector,
|
|
8708
8690
|
switchChainAsync,
|
|
8709
8691
|
sendTransactionAsync,
|
|
8710
8692
|
writeContractAsync
|
|
@@ -12619,15 +12601,7 @@ function FunSignInStep({
|
|
|
12619
12601
|
display: "flex",
|
|
12620
12602
|
flexDirection: "column",
|
|
12621
12603
|
gap: "14"
|
|
12622
|
-
},
|
|
12623
|
-
display: "flex",
|
|
12624
|
-
justifyContent: "center",
|
|
12625
|
-
width: "full"
|
|
12626
|
-
}, /* @__PURE__ */ React117.createElement(Text, {
|
|
12627
|
-
size: "14",
|
|
12628
|
-
color: "modalTextSecondary",
|
|
12629
|
-
weight: "medium"
|
|
12630
|
-
}, "or continue with")) : null, /* @__PURE__ */ React117.createElement(Box, {
|
|
12604
|
+
}, /* @__PURE__ */ React117.createElement(Box, {
|
|
12631
12605
|
display: "flex",
|
|
12632
12606
|
gap: "10"
|
|
12633
12607
|
}, ENABLED_SOCIAL_ITEMS.map((socialItem) => /* @__PURE__ */ React117.createElement(FunIconButton, {
|
|
@@ -15392,7 +15366,7 @@ function setFunkitConnectVersion({ version }) {
|
|
|
15392
15366
|
localStorage.setItem(storageKey5, version);
|
|
15393
15367
|
}
|
|
15394
15368
|
function getCurrentSdkVersion() {
|
|
15395
|
-
return "2.0.
|
|
15369
|
+
return "2.0.5";
|
|
15396
15370
|
}
|
|
15397
15371
|
function useFingerprint() {
|
|
15398
15372
|
const fingerprint = useCallback32(() => {
|
|
@@ -5,8 +5,6 @@ import type { BooleanFlagConfig, StringFlagConfig } from './types';
|
|
|
5
5
|
* Once we ship a feature flag, we can't change the key.
|
|
6
6
|
*/
|
|
7
7
|
export declare enum FlagKey {
|
|
8
|
-
/** Shows "or continue with" label on FunSignInStep */
|
|
9
|
-
ConnectSignInShowSocialLabel = "connect_sign_in_show_social_label",
|
|
10
8
|
/** Custom text for the select payment method button */
|
|
11
9
|
SelectPaymentMethodText = "select_payment_method_text",
|
|
12
10
|
/**
|
|
@@ -24,7 +22,6 @@ export declare enum FlagKey {
|
|
|
24
22
|
DisableZkSyncSourceAssetsForDydxCheckouts = "disable_zksync_source_assets_for_dydx_checkouts"
|
|
25
23
|
}
|
|
26
24
|
export declare const flagConfig: {
|
|
27
|
-
[FlagKey.ConnectSignInShowSocialLabel]: BooleanFlagConfig;
|
|
28
25
|
[FlagKey.SelectPaymentMethodText]: StringFlagConfig;
|
|
29
26
|
[FlagKey.PaymentMethodCopyV1]: BooleanFlagConfig;
|
|
30
27
|
[FlagKey.DisableMantleSourceAssets]: BooleanFlagConfig;
|
|
@@ -2,7 +2,6 @@ import { FlagKey } from './config';
|
|
|
2
2
|
import { FeatureFlag } from './impl';
|
|
3
3
|
export { FlagKey };
|
|
4
4
|
declare const singleton: FeatureFlag<{
|
|
5
|
-
connect_sign_in_show_social_label: import("./types").BooleanFlagConfig;
|
|
6
5
|
select_payment_method_text: import("./types").StringFlagConfig;
|
|
7
6
|
payment_method_copy_v1: import("./types").BooleanFlagConfig;
|
|
8
7
|
disable_mantle_source_assets: import("./types").BooleanFlagConfig;
|
|
@@ -20,6 +20,7 @@ var coreWallet = ({
|
|
|
20
20
|
return {
|
|
21
21
|
id: "core",
|
|
22
22
|
name: "Core",
|
|
23
|
+
rdns: "app.core.extension",
|
|
23
24
|
iconUrl: async () => (await import("./coreWallet-HRVLR2XS.js")).default,
|
|
24
25
|
iconBackground: "#1A1A1C",
|
|
25
26
|
installed: !shouldUseWalletConnect ? isCoreInjected : void 0,
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import {
|
|
3
3
|
isAndroid
|
|
4
4
|
} from "./chunk-ZOLACFTK.js";
|
|
5
|
+
import {
|
|
6
|
+
getWalletConnectConnector
|
|
7
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
8
|
import {
|
|
6
9
|
getInjectedConnector,
|
|
7
10
|
hasInjectedProvider
|
|
8
11
|
} from "./chunk-F3VCNZXS.js";
|
|
9
|
-
import {
|
|
10
|
-
getWalletConnectConnector
|
|
11
|
-
} from "./chunk-ZDU3JFGR.js";
|
|
12
12
|
|
|
13
13
|
// src/wallets/walletConnectors/bitgetWallet/bitgetWallet.ts
|
|
14
14
|
var bitgetWallet = ({
|
|
@@ -23,6 +23,7 @@ var bitgetWallet = ({
|
|
|
23
23
|
return {
|
|
24
24
|
id: "bitget",
|
|
25
25
|
name: "Bitget Wallet",
|
|
26
|
+
rdns: "com.bitget.web3",
|
|
26
27
|
iconUrl: async () => (await import("./bitgetWallet-JVNCB4EB.js")).default,
|
|
27
28
|
iconAccent: "#f6851a",
|
|
28
29
|
iconBackground: "#fff",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
2
5
|
import {
|
|
3
6
|
getInjectedConnector,
|
|
4
7
|
hasInjectedProvider
|
|
5
8
|
} from "./chunk-F3VCNZXS.js";
|
|
6
|
-
import {
|
|
7
|
-
getWalletConnectConnector
|
|
8
|
-
} from "./chunk-ZDU3JFGR.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/subWallet/subWallet.ts
|
|
11
11
|
var subWallet = ({
|
|
@@ -74,6 +74,7 @@ var subWallet = ({
|
|
|
74
74
|
return {
|
|
75
75
|
id: "subwallet",
|
|
76
76
|
name: "SubWallet",
|
|
77
|
+
rdns: "app.subwallet",
|
|
77
78
|
iconUrl: async () => (await import("./subWallet-ELA2UJOS.js")).default,
|
|
78
79
|
iconBackground: "#fff",
|
|
79
80
|
installed: isSubWalletInjected || void 0,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
getWalletConnectConnector
|
|
4
|
-
} from "./chunk-ZDU3JFGR.js";
|
|
5
2
|
import {
|
|
6
3
|
getInjectedConnector,
|
|
7
4
|
hasInjectedProvider
|
|
8
5
|
} from "./chunk-F3VCNZXS.js";
|
|
6
|
+
import {
|
|
7
|
+
getWalletConnectConnector
|
|
8
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
9
9
|
|
|
10
10
|
// src/wallets/walletConnectors/subWallet/subWallet.ts
|
|
11
11
|
var subWallet = ({
|
|
@@ -74,6 +74,7 @@ var subWallet = ({
|
|
|
74
74
|
return {
|
|
75
75
|
id: "subwallet",
|
|
76
76
|
name: "SubWallet",
|
|
77
|
+
rdns: "app.subwallet",
|
|
77
78
|
iconUrl: async () => (await import("./subWallet-ELA2UJOS.js")).default,
|
|
78
79
|
iconBackground: "#fff",
|
|
79
80
|
installed: isSubWalletInjected || void 0,
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
import {
|
|
3
3
|
isAndroid
|
|
4
4
|
} from "./chunk-ZOLACFTK.js";
|
|
5
|
-
import {
|
|
6
|
-
getWalletConnectConnector
|
|
7
|
-
} from "./chunk-ZDU3JFGR.js";
|
|
8
5
|
import {
|
|
9
6
|
getInjectedConnector,
|
|
10
7
|
hasInjectedProvider
|
|
11
8
|
} from "./chunk-F3VCNZXS.js";
|
|
9
|
+
import {
|
|
10
|
+
getWalletConnectConnector
|
|
11
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
12
12
|
|
|
13
13
|
// src/wallets/walletConnectors/bitgetWallet/bitgetWallet.ts
|
|
14
14
|
var bitgetWallet = ({
|
|
@@ -23,6 +23,7 @@ var bitgetWallet = ({
|
|
|
23
23
|
return {
|
|
24
24
|
id: "bitget",
|
|
25
25
|
name: "Bitget Wallet",
|
|
26
|
+
rdns: "com.bitget.web3",
|
|
26
27
|
iconUrl: async () => (await import("./bitgetWallet-JVNCB4EB.js")).default,
|
|
27
28
|
iconAccent: "#f6851a",
|
|
28
29
|
iconBackground: "#fff",
|
|
@@ -20,6 +20,7 @@ var coreWallet = ({
|
|
|
20
20
|
return {
|
|
21
21
|
id: "core",
|
|
22
22
|
name: "Core",
|
|
23
|
+
rdns: "app.core.extension",
|
|
23
24
|
iconUrl: async () => (await import("./coreWallet-HRVLR2XS.js")).default,
|
|
24
25
|
iconBackground: "#1A1A1C",
|
|
25
26
|
installed: !shouldUseWalletConnect ? isCoreInjected : void 0,
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use client";
|
|
2
|
+
import {
|
|
3
|
+
zealWallet
|
|
4
|
+
} from "./chunk-Z5QFIFDP.js";
|
|
2
5
|
import {
|
|
3
6
|
xdefiWallet
|
|
4
7
|
} from "./chunk-JNZ3EYC7.js";
|
|
5
8
|
import {
|
|
6
|
-
|
|
7
|
-
} from "./chunk-
|
|
8
|
-
import {
|
|
9
|
-
walletConnectWallet
|
|
10
|
-
} from "./chunk-ASPRR7T3.js";
|
|
9
|
+
gateWallet
|
|
10
|
+
} from "./chunk-S2IWMXKX.js";
|
|
11
11
|
import {
|
|
12
12
|
talismanWallet
|
|
13
13
|
} from "./chunk-R2GYJ376.js";
|
|
@@ -17,105 +17,102 @@ import {
|
|
|
17
17
|
import {
|
|
18
18
|
tokenaryWallet
|
|
19
19
|
} from "./chunk-MD5OPFAT.js";
|
|
20
|
-
import {
|
|
21
|
-
subWallet
|
|
22
|
-
} from "./chunk-5L2OLU3J.js";
|
|
23
|
-
import {
|
|
24
|
-
uniswapWallet
|
|
25
|
-
} from "./chunk-XRSY4JVH.js";
|
|
26
20
|
import {
|
|
27
21
|
trustWallet
|
|
28
22
|
} from "./chunk-MFS6NY6T.js";
|
|
29
23
|
import {
|
|
30
|
-
|
|
31
|
-
} from "./chunk-
|
|
32
|
-
import {
|
|
33
|
-
zealWallet
|
|
34
|
-
} from "./chunk-Z5QFIFDP.js";
|
|
24
|
+
walletConnectWallet
|
|
25
|
+
} from "./chunk-ASPRR7T3.js";
|
|
35
26
|
import {
|
|
36
|
-
|
|
37
|
-
} from "./chunk-
|
|
27
|
+
uniswapWallet
|
|
28
|
+
} from "./chunk-XRSY4JVH.js";
|
|
38
29
|
import {
|
|
39
|
-
|
|
40
|
-
} from "./chunk-
|
|
30
|
+
zerionWallet
|
|
31
|
+
} from "./chunk-OPO2D6GL.js";
|
|
41
32
|
import {
|
|
42
|
-
|
|
43
|
-
} from "./chunk-
|
|
33
|
+
metaMaskWallet
|
|
34
|
+
} from "./chunk-3F5GNHAG.js";
|
|
44
35
|
import {
|
|
45
|
-
|
|
46
|
-
} from "./chunk-
|
|
36
|
+
rabbyWallet
|
|
37
|
+
} from "./chunk-5SIHQ5GA.js";
|
|
47
38
|
import {
|
|
48
39
|
ramperWallet
|
|
49
40
|
} from "./chunk-XEZPRJPV.js";
|
|
41
|
+
import {
|
|
42
|
+
roninWallet
|
|
43
|
+
} from "./chunk-NK3DYIAB.js";
|
|
50
44
|
import {
|
|
51
45
|
safeheronWallet
|
|
52
46
|
} from "./chunk-FQDX6QIP.js";
|
|
47
|
+
import {
|
|
48
|
+
safeWallet
|
|
49
|
+
} from "./chunk-D3DCQ72J.js";
|
|
53
50
|
import {
|
|
54
51
|
safepalWallet
|
|
55
52
|
} from "./chunk-XB2GFXBL.js";
|
|
53
|
+
import {
|
|
54
|
+
subWallet
|
|
55
|
+
} from "./chunk-HTIWZZPO.js";
|
|
56
56
|
import {
|
|
57
57
|
tahoWallet
|
|
58
58
|
} from "./chunk-PILSRRPJ.js";
|
|
59
59
|
import {
|
|
60
|
-
|
|
61
|
-
} from "./chunk-
|
|
62
|
-
import {
|
|
63
|
-
frontierWallet
|
|
64
|
-
} from "./chunk-OXWTS7HX.js";
|
|
60
|
+
mewWallet
|
|
61
|
+
} from "./chunk-ZCSUP7CX.js";
|
|
65
62
|
import {
|
|
66
|
-
|
|
67
|
-
} from "./chunk-
|
|
63
|
+
oktoWallet
|
|
64
|
+
} from "./chunk-WKHTUEF5.js";
|
|
68
65
|
import {
|
|
69
66
|
omniWallet
|
|
70
67
|
} from "./chunk-SVN7OEQR.js";
|
|
71
68
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
69
|
+
okxWallet
|
|
70
|
+
} from "./chunk-XUXFYTCV.js";
|
|
71
|
+
import {
|
|
72
|
+
oneKeyWallet
|
|
73
|
+
} from "./chunk-NIVH7ULX.js";
|
|
74
74
|
import {
|
|
75
75
|
oneInchWallet
|
|
76
76
|
} from "./chunk-LCPIZUR3.js";
|
|
77
77
|
import {
|
|
78
|
-
|
|
79
|
-
} from "./chunk-
|
|
80
|
-
import {
|
|
81
|
-
oneKeyWallet
|
|
82
|
-
} from "./chunk-QS2J6MWB.js";
|
|
78
|
+
phantomWallet
|
|
79
|
+
} from "./chunk-4PTY6XNU.js";
|
|
83
80
|
import {
|
|
84
|
-
|
|
85
|
-
} from "./chunk-
|
|
81
|
+
rainbowWallet
|
|
82
|
+
} from "./chunk-WH7S23VZ.js";
|
|
86
83
|
import {
|
|
87
84
|
frameWallet
|
|
88
|
-
} from "./chunk-
|
|
85
|
+
} from "./chunk-LR37V45H.js";
|
|
89
86
|
import {
|
|
90
|
-
|
|
91
|
-
} from "./chunk-
|
|
87
|
+
frontierWallet
|
|
88
|
+
} from "./chunk-OXWTS7HX.js";
|
|
92
89
|
import {
|
|
93
|
-
|
|
94
|
-
} from "./chunk-
|
|
90
|
+
enkryptWallet
|
|
91
|
+
} from "./chunk-SJWHYD45.js";
|
|
92
|
+
import {
|
|
93
|
+
kresusWallet
|
|
94
|
+
} from "./chunk-X6T3CICZ.js";
|
|
95
95
|
import {
|
|
96
96
|
injectedWallet
|
|
97
97
|
} from "./chunk-GUJHPWTU.js";
|
|
98
98
|
import {
|
|
99
|
-
|
|
100
|
-
} from "./chunk-
|
|
99
|
+
imTokenWallet
|
|
100
|
+
} from "./chunk-5MVV7OVS.js";
|
|
101
101
|
import {
|
|
102
102
|
ledgerWallet
|
|
103
103
|
} from "./chunk-Y6VY6E3L.js";
|
|
104
|
+
import {
|
|
105
|
+
clvWallet
|
|
106
|
+
} from "./chunk-2DWBVWFI.js";
|
|
104
107
|
import {
|
|
105
108
|
coin98Wallet
|
|
106
109
|
} from "./chunk-R5GNFRXW.js";
|
|
107
110
|
import {
|
|
108
|
-
|
|
109
|
-
} from "./chunk-
|
|
111
|
+
coreWallet
|
|
112
|
+
} from "./chunk-WSILDNIW.js";
|
|
110
113
|
import {
|
|
111
114
|
coinbaseWallet
|
|
112
115
|
} from "./chunk-O77H3VWW.js";
|
|
113
|
-
import {
|
|
114
|
-
braveWallet
|
|
115
|
-
} from "./chunk-KJWMF6GZ.js";
|
|
116
|
-
import {
|
|
117
|
-
coreWallet
|
|
118
|
-
} from "./chunk-OMKARG6Y.js";
|
|
119
116
|
import {
|
|
120
117
|
dawnWallet
|
|
121
118
|
} from "./chunk-QUFNIKMV.js";
|
|
@@ -123,8 +120,11 @@ import {
|
|
|
123
120
|
desigWallet
|
|
124
121
|
} from "./chunk-P4C7ZHIS.js";
|
|
125
122
|
import {
|
|
126
|
-
|
|
127
|
-
} from "./chunk-
|
|
123
|
+
braveWallet
|
|
124
|
+
} from "./chunk-KJWMF6GZ.js";
|
|
125
|
+
import {
|
|
126
|
+
foxWallet
|
|
127
|
+
} from "./chunk-M4SPCKW4.js";
|
|
128
128
|
import {
|
|
129
129
|
argentWallet
|
|
130
130
|
} from "./chunk-NZ5G23JP.js";
|
|
@@ -133,10 +133,13 @@ import {
|
|
|
133
133
|
} from "./chunk-PJRUHFBT.js";
|
|
134
134
|
import {
|
|
135
135
|
bitgetWallet
|
|
136
|
-
} from "./chunk-
|
|
136
|
+
} from "./chunk-VMTIFEE6.js";
|
|
137
137
|
import {
|
|
138
138
|
bitskiWallet
|
|
139
139
|
} from "./chunk-IMZRCMZR.js";
|
|
140
|
+
import {
|
|
141
|
+
bitverseWallet
|
|
142
|
+
} from "./chunk-NL4I7WOT.js";
|
|
140
143
|
import {
|
|
141
144
|
bloomWallet
|
|
142
145
|
} from "./chunk-NTGZF5BY.js";
|
|
@@ -144,9 +147,6 @@ import "./chunk-ZOLACFTK.js";
|
|
|
144
147
|
import {
|
|
145
148
|
bybitWallet
|
|
146
149
|
} from "./chunk-BCXBFAL4.js";
|
|
147
|
-
import {
|
|
148
|
-
clvWallet
|
|
149
|
-
} from "./chunk-2DWBVWFI.js";
|
|
150
150
|
import "./chunk-F3VCNZXS.js";
|
|
151
151
|
import "./chunk-ZDU3JFGR.js";
|
|
152
152
|
export {
|