@funkit/connect 2.0.6 → 2.0.7
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 +9 -0
- package/dist/config/getDefaultConfig.d.ts +33 -0
- package/dist/index.js +44 -32
- package/dist/wallets/walletConnectors/argentWallet/argentWallet.js +2 -2
- package/dist/wallets/walletConnectors/bifrostWallet/bifrostWallet.js +2 -2
- package/dist/wallets/walletConnectors/bitgetWallet/bitgetWallet.js +2 -2
- package/dist/wallets/walletConnectors/bloomWallet/bloomWallet.js +2 -2
- package/dist/wallets/walletConnectors/chunk-5CBRIEFK.js +94 -0
- package/dist/wallets/walletConnectors/chunk-5NAFNTDG.js +71 -0
- package/dist/wallets/walletConnectors/chunk-6LHOZPKY.js +101 -0
- package/dist/wallets/walletConnectors/chunk-A7DLL4TF.js +102 -0
- package/dist/wallets/walletConnectors/chunk-AJKRYTH2.js +92 -0
- package/dist/wallets/walletConnectors/chunk-BNNARTHK.js +105 -0
- package/dist/wallets/walletConnectors/chunk-CVGDYGHA.js +60 -0
- package/dist/wallets/walletConnectors/chunk-EWPQ4636.js +73 -0
- package/dist/wallets/walletConnectors/chunk-IXI5EXND.js +95 -0
- package/dist/wallets/walletConnectors/chunk-KZFAL4RZ.js +27 -0
- package/dist/wallets/walletConnectors/chunk-OBYMPVH3.js +182 -0
- package/dist/wallets/walletConnectors/chunk-OKZSWAPF.js +60 -0
- package/dist/wallets/walletConnectors/chunk-OYKWP3N3.js +60 -0
- package/dist/wallets/walletConnectors/chunk-OYW4TIA3.js +81 -0
- package/dist/wallets/walletConnectors/chunk-P4BVOAJC.js +98 -0
- package/dist/wallets/walletConnectors/chunk-RCUBLYVS.js +96 -0
- package/dist/wallets/walletConnectors/dawnWallet/dawnWallet.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 +59 -59
- package/dist/wallets/walletConnectors/ledgerWallet/ledgerWallet.js +2 -2
- package/dist/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.js +2 -2
- package/dist/wallets/walletConnectors/oktoWallet/oktoWallet.js +2 -2
- package/dist/wallets/walletConnectors/okxWallet/okxWallet.js +2 -2
- package/dist/wallets/walletConnectors/omniWallet/omniWallet.js +2 -2
- package/dist/wallets/walletConnectors/rainbowWallet/rainbowWallet.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
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
isMobile
|
|
7
|
+
} from "./chunk-ZOLACFTK.js";
|
|
8
|
+
|
|
9
|
+
// src/wallets/walletConnectors/bloomWallet/bloomWallet.ts
|
|
10
|
+
var bloomWallet = ({
|
|
11
|
+
projectId,
|
|
12
|
+
walletConnectParameters
|
|
13
|
+
}) => ({
|
|
14
|
+
id: "bloomWallet",
|
|
15
|
+
name: "Bloom Wallet",
|
|
16
|
+
iconBackground: "#000",
|
|
17
|
+
iconAccent: "#000",
|
|
18
|
+
hidden: () => isMobile(),
|
|
19
|
+
iconUrl: async () => (await import("./bloomWallet-LYZWRHBK.js")).default,
|
|
20
|
+
downloadUrls: {
|
|
21
|
+
qrCode: "https://bloomwallet.io/",
|
|
22
|
+
windows: "https://bloomwallet.io/",
|
|
23
|
+
macos: "https://bloomwallet.io/",
|
|
24
|
+
linux: "https://bloomwallet.io/",
|
|
25
|
+
desktop: "https://bloomwallet.io/"
|
|
26
|
+
},
|
|
27
|
+
qrCode: {
|
|
28
|
+
getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
|
|
29
|
+
instructions: {
|
|
30
|
+
learnMoreUrl: "https://bloomwallet.io/",
|
|
31
|
+
steps: [
|
|
32
|
+
{
|
|
33
|
+
description: "wallet_connectors.bloom.qr_code.step1.description",
|
|
34
|
+
step: "install",
|
|
35
|
+
title: "wallet_connectors.bloom.qr_code.step1.title"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
description: "wallet_connectors.bloom.qr_code.step2.description",
|
|
39
|
+
step: "create",
|
|
40
|
+
title: "wallet_connectors.bloom.qr_code.step2.title"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
description: "wallet_connectors.bloom.qr_code.step3.description",
|
|
44
|
+
step: "refresh",
|
|
45
|
+
title: "wallet_connectors.bloom.qr_code.step3.title"
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
desktop: {
|
|
51
|
+
getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
|
|
52
|
+
instructions: {
|
|
53
|
+
learnMoreUrl: "https://bloomwallet.io/",
|
|
54
|
+
steps: [
|
|
55
|
+
{
|
|
56
|
+
description: "wallet_connectors.bloom.desktop.step1.description",
|
|
57
|
+
step: "install",
|
|
58
|
+
title: "wallet_connectors.bloom.desktop.step1.title"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
description: "wallet_connectors.bloom.desktop.step2.description",
|
|
62
|
+
step: "create",
|
|
63
|
+
title: "wallet_connectors.bloom.desktop.step2.title"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
description: "wallet_connectors.bloom.desktop.step3.description",
|
|
67
|
+
step: "refresh",
|
|
68
|
+
title: "wallet_connectors.bloom.desktop.step3.title"
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
createConnector: getWalletConnectConnector({
|
|
74
|
+
projectId,
|
|
75
|
+
walletConnectParameters
|
|
76
|
+
})
|
|
77
|
+
});
|
|
78
|
+
|
|
79
|
+
export {
|
|
80
|
+
bloomWallet
|
|
81
|
+
};
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
getInjectedConnector,
|
|
7
|
+
hasInjectedProvider
|
|
8
|
+
} from "./chunk-F3VCNZXS.js";
|
|
9
|
+
import {
|
|
10
|
+
isAndroid
|
|
11
|
+
} from "./chunk-ZOLACFTK.js";
|
|
12
|
+
|
|
13
|
+
// src/wallets/walletConnectors/frontierWallet/frontierWallet.ts
|
|
14
|
+
var frontierWallet = ({
|
|
15
|
+
projectId,
|
|
16
|
+
walletConnectParameters
|
|
17
|
+
}) => {
|
|
18
|
+
const isFrontierInjected = hasInjectedProvider({
|
|
19
|
+
namespace: "frontier.ethereum",
|
|
20
|
+
flag: "isFrontier"
|
|
21
|
+
});
|
|
22
|
+
const shouldUseWalletConnect = !isFrontierInjected;
|
|
23
|
+
return {
|
|
24
|
+
id: "frontier",
|
|
25
|
+
name: "Frontier Wallet",
|
|
26
|
+
rdns: "xyz.frontier.wallet",
|
|
27
|
+
installed: isFrontierInjected,
|
|
28
|
+
iconUrl: async () => (await import("./frontierWallet-3CNZ2ST5.js")).default,
|
|
29
|
+
iconBackground: "#CC703C",
|
|
30
|
+
downloadUrls: {
|
|
31
|
+
android: "https://play.google.com/store/apps/details?id=com.frontierwallet",
|
|
32
|
+
ios: "https://apps.apple.com/us/app/frontier-crypto-defi-wallet/id1482380988",
|
|
33
|
+
qrCode: "https://www.frontier.xyz/download",
|
|
34
|
+
chrome: "https://chrome.google.com/webstore/detail/frontier-wallet/kppfdiipphfccemcignhifpjkapfbihd",
|
|
35
|
+
browserExtension: "https://www.frontier.xyz/download"
|
|
36
|
+
},
|
|
37
|
+
mobile: {
|
|
38
|
+
getUri: shouldUseWalletConnect ? (uri) => {
|
|
39
|
+
return isAndroid() ? `frontier://wc?uri=${encodeURIComponent(uri)}` : uri;
|
|
40
|
+
} : void 0
|
|
41
|
+
},
|
|
42
|
+
qrCode: shouldUseWalletConnect ? {
|
|
43
|
+
getUri: (uri) => {
|
|
44
|
+
return isAndroid() ? `frontier://wc?uri=${encodeURIComponent(uri)}` : uri;
|
|
45
|
+
},
|
|
46
|
+
instructions: {
|
|
47
|
+
learnMoreUrl: "https://help.frontier.xyz/en/",
|
|
48
|
+
steps: [
|
|
49
|
+
{
|
|
50
|
+
description: "wallet_connectors.im_token.qr_code.step1.description",
|
|
51
|
+
step: "install",
|
|
52
|
+
title: "wallet_connectors.im_token.qr_code.step1.title"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
description: "wallet_connectors.im_token.qr_code.step2.description",
|
|
56
|
+
step: "create",
|
|
57
|
+
title: "wallet_connectors.im_token.qr_code.step2.title"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
description: "wallet_connectors.im_token.qr_code.step3.description",
|
|
61
|
+
step: "scan",
|
|
62
|
+
title: "wallet_connectors.im_token.qr_code.step3.title"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
} : void 0,
|
|
67
|
+
extension: {
|
|
68
|
+
instructions: {
|
|
69
|
+
learnMoreUrl: "https://help.frontier.xyz/en/articles/6967236-setting-up-frontier-on-your-device",
|
|
70
|
+
steps: [
|
|
71
|
+
{
|
|
72
|
+
description: "wallet_connectors.frontier.extension.step1.description",
|
|
73
|
+
step: "install",
|
|
74
|
+
title: "wallet_connectors.frontier.extension.step1.title"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
description: "wallet_connectors.frontier.extension.step2.description",
|
|
78
|
+
step: "create",
|
|
79
|
+
title: "wallet_connectors.frontier.extension.step2.title"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
description: "wallet_connectors.frontier.extension.step3.description",
|
|
83
|
+
step: "refresh",
|
|
84
|
+
title: "wallet_connectors.frontier.extension.step3.title"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({ projectId, walletConnectParameters }) : getInjectedConnector({
|
|
90
|
+
namespace: "frontier.ethereum",
|
|
91
|
+
flag: "isFrontier"
|
|
92
|
+
})
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
export {
|
|
97
|
+
frontierWallet
|
|
98
|
+
};
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
getInjectedConnector,
|
|
7
|
+
hasInjectedProvider
|
|
8
|
+
} from "./chunk-F3VCNZXS.js";
|
|
9
|
+
import {
|
|
10
|
+
isAndroid
|
|
11
|
+
} from "./chunk-ZOLACFTK.js";
|
|
12
|
+
|
|
13
|
+
// src/wallets/walletConnectors/okxWallet/okxWallet.ts
|
|
14
|
+
var okxWallet = ({
|
|
15
|
+
projectId,
|
|
16
|
+
walletConnectParameters
|
|
17
|
+
}) => {
|
|
18
|
+
const isOKXInjected = hasInjectedProvider({ namespace: "okxwallet" });
|
|
19
|
+
const shouldUseWalletConnect = !isOKXInjected;
|
|
20
|
+
return {
|
|
21
|
+
id: "okx",
|
|
22
|
+
name: "OKX Wallet",
|
|
23
|
+
rdns: "com.okex.wallet",
|
|
24
|
+
iconUrl: async () => (await import("./okxWallet-GKYMI2XW.js")).default,
|
|
25
|
+
iconAccent: "#000",
|
|
26
|
+
iconBackground: "#000",
|
|
27
|
+
downloadUrls: {
|
|
28
|
+
android: "https://play.google.com/store/apps/details?id=com.okinc.okex.gp",
|
|
29
|
+
ios: "https://itunes.apple.com/app/id1327268470?mt=8",
|
|
30
|
+
mobile: "https://okx.com/download",
|
|
31
|
+
qrCode: "https://okx.com/download",
|
|
32
|
+
chrome: "https://chrome.google.com/webstore/detail/okx-wallet/mcohilncbfahbmgdjkbpemcciiolgcge",
|
|
33
|
+
edge: "https://microsoftedge.microsoft.com/addons/detail/okx-wallet/pbpjkcldjiffchgbbndmhojiacbgflha",
|
|
34
|
+
firefox: "https://addons.mozilla.org/firefox/addon/okexwallet/",
|
|
35
|
+
browserExtension: "https://okx.com/download"
|
|
36
|
+
},
|
|
37
|
+
mobile: {
|
|
38
|
+
getUri: shouldUseWalletConnect ? (uri) => {
|
|
39
|
+
return isAndroid() ? uri : `okex://main/wc?uri=${encodeURIComponent(uri)}`;
|
|
40
|
+
} : void 0
|
|
41
|
+
},
|
|
42
|
+
qrCode: shouldUseWalletConnect ? {
|
|
43
|
+
getUri: (uri) => uri,
|
|
44
|
+
instructions: {
|
|
45
|
+
learnMoreUrl: "https://okx.com/web3/",
|
|
46
|
+
steps: [
|
|
47
|
+
{
|
|
48
|
+
description: "wallet_connectors.okx.qr_code.step1.description",
|
|
49
|
+
step: "install",
|
|
50
|
+
title: "wallet_connectors.okx.qr_code.step1.title"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
description: "wallet_connectors.okx.qr_code.step2.description",
|
|
54
|
+
step: "create",
|
|
55
|
+
title: "wallet_connectors.okx.qr_code.step2.title"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
description: "wallet_connectors.okx.qr_code.step3.description",
|
|
59
|
+
step: "scan",
|
|
60
|
+
title: "wallet_connectors.okx.qr_code.step3.title"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
} : void 0,
|
|
65
|
+
extension: {
|
|
66
|
+
instructions: {
|
|
67
|
+
learnMoreUrl: "https://okx.com/web3/",
|
|
68
|
+
steps: [
|
|
69
|
+
{
|
|
70
|
+
description: "wallet_connectors.okx.extension.step1.description",
|
|
71
|
+
step: "install",
|
|
72
|
+
title: "wallet_connectors.okx.extension.step1.title"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
description: "wallet_connectors.okx.extension.step2.description",
|
|
76
|
+
step: "create",
|
|
77
|
+
title: "wallet_connectors.okx.extension.step2.title"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
description: "wallet_connectors.okx.extension.step3.description",
|
|
81
|
+
step: "refresh",
|
|
82
|
+
title: "wallet_connectors.okx.extension.step3.title"
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
|
|
88
|
+
projectId,
|
|
89
|
+
walletConnectParameters
|
|
90
|
+
}) : getInjectedConnector({ namespace: "okxwallet" })
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export {
|
|
95
|
+
okxWallet
|
|
96
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
frontierWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-P4BVOAJC.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-5CBRIEFK.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.js";
|
|
8
8
|
export {
|
|
9
9
|
gateWallet
|
|
10
10
|
};
|
|
@@ -1,49 +1,52 @@
|
|
|
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
|
-
zerionWallet
|
|
10
|
-
} from "./chunk-G4DNQN67.js";
|
|
9
|
+
mewWallet
|
|
10
|
+
} from "./chunk-ZCSUP7CX.js";
|
|
11
11
|
import {
|
|
12
12
|
tahoWallet
|
|
13
13
|
} from "./chunk-PILSRRPJ.js";
|
|
14
14
|
import {
|
|
15
|
-
|
|
16
|
-
} from "./chunk-
|
|
15
|
+
talismanWallet
|
|
16
|
+
} from "./chunk-R2GYJ376.js";
|
|
17
|
+
import {
|
|
18
|
+
tokenPocketWallet
|
|
19
|
+
} from "./chunk-IXI5EXND.js";
|
|
17
20
|
import {
|
|
18
21
|
tokenaryWallet
|
|
19
22
|
} from "./chunk-MD5OPFAT.js";
|
|
20
|
-
import {
|
|
21
|
-
uniswapWallet
|
|
22
|
-
} from "./chunk-XRSY4JVH.js";
|
|
23
23
|
import {
|
|
24
24
|
trustWallet
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-BNNARTHK.js";
|
|
26
26
|
import {
|
|
27
|
-
|
|
28
|
-
} from "./chunk-
|
|
27
|
+
uniswapWallet
|
|
28
|
+
} from "./chunk-XRSY4JVH.js";
|
|
29
29
|
import {
|
|
30
30
|
walletConnectWallet
|
|
31
31
|
} from "./chunk-ASPRR7T3.js";
|
|
32
32
|
import {
|
|
33
|
-
|
|
34
|
-
} from "./chunk-
|
|
35
|
-
import {
|
|
36
|
-
rabbyWallet
|
|
37
|
-
} from "./chunk-5SIHQ5GA.js";
|
|
33
|
+
zerionWallet
|
|
34
|
+
} from "./chunk-A7DLL4TF.js";
|
|
38
35
|
import {
|
|
39
36
|
rainbowWallet
|
|
40
|
-
} from "./chunk-
|
|
37
|
+
} from "./chunk-EWPQ4636.js";
|
|
38
|
+
import {
|
|
39
|
+
ramperWallet
|
|
40
|
+
} from "./chunk-XEZPRJPV.js";
|
|
41
|
+
import {
|
|
42
|
+
safeWallet
|
|
43
|
+
} from "./chunk-D3DCQ72J.js";
|
|
41
44
|
import {
|
|
42
45
|
roninWallet
|
|
43
46
|
} from "./chunk-CNTLU4ZV.js";
|
|
44
47
|
import {
|
|
45
|
-
|
|
46
|
-
} from "./chunk-
|
|
48
|
+
coin98Wallet
|
|
49
|
+
} from "./chunk-3QXMJHL4.js";
|
|
47
50
|
import {
|
|
48
51
|
safeheronWallet
|
|
49
52
|
} from "./chunk-FQDX6QIP.js";
|
|
@@ -53,24 +56,18 @@ import {
|
|
|
53
56
|
import {
|
|
54
57
|
subWallet
|
|
55
58
|
} from "./chunk-GXP3HLP7.js";
|
|
56
|
-
import {
|
|
57
|
-
safeWallet
|
|
58
|
-
} from "./chunk-D3DCQ72J.js";
|
|
59
|
-
import {
|
|
60
|
-
kresusWallet
|
|
61
|
-
} from "./chunk-X6T3CICZ.js";
|
|
62
59
|
import {
|
|
63
60
|
oktoWallet
|
|
64
|
-
} from "./chunk-
|
|
61
|
+
} from "./chunk-OKZSWAPF.js";
|
|
65
62
|
import {
|
|
66
63
|
okxWallet
|
|
67
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-RCUBLYVS.js";
|
|
68
65
|
import {
|
|
69
66
|
omniWallet
|
|
70
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-OYKWP3N3.js";
|
|
71
68
|
import {
|
|
72
|
-
|
|
73
|
-
} from "./chunk-
|
|
69
|
+
metaMaskWallet
|
|
70
|
+
} from "./chunk-OBYMPVH3.js";
|
|
74
71
|
import {
|
|
75
72
|
oneInchWallet
|
|
76
73
|
} from "./chunk-LCPIZUR3.js";
|
|
@@ -80,75 +77,78 @@ import {
|
|
|
80
77
|
import {
|
|
81
78
|
phantomWallet
|
|
82
79
|
} from "./chunk-4PTY6XNU.js";
|
|
80
|
+
import {
|
|
81
|
+
rabbyWallet
|
|
82
|
+
} from "./chunk-5SIHQ5GA.js";
|
|
83
83
|
import {
|
|
84
84
|
foxWallet
|
|
85
85
|
} from "./chunk-TKXMLZXG.js";
|
|
86
|
-
import {
|
|
87
|
-
frameWallet
|
|
88
|
-
} from "./chunk-LR37V45H.js";
|
|
89
86
|
import {
|
|
90
87
|
frontierWallet
|
|
91
|
-
} from "./chunk-
|
|
88
|
+
} from "./chunk-P4BVOAJC.js";
|
|
92
89
|
import {
|
|
93
90
|
gateWallet
|
|
94
|
-
} from "./chunk-
|
|
91
|
+
} from "./chunk-5CBRIEFK.js";
|
|
92
|
+
import {
|
|
93
|
+
imTokenWallet
|
|
94
|
+
} from "./chunk-5MVV7OVS.js";
|
|
95
95
|
import {
|
|
96
96
|
injectedWallet
|
|
97
97
|
} from "./chunk-GUJHPWTU.js";
|
|
98
|
+
import {
|
|
99
|
+
kresusWallet
|
|
100
|
+
} from "./chunk-X6T3CICZ.js";
|
|
98
101
|
import {
|
|
99
102
|
ledgerWallet
|
|
100
|
-
} from "./chunk-
|
|
103
|
+
} from "./chunk-AJKRYTH2.js";
|
|
101
104
|
import {
|
|
102
|
-
|
|
103
|
-
} from "./chunk-
|
|
105
|
+
bybitWallet
|
|
106
|
+
} from "./chunk-ZBQT5PV6.js";
|
|
104
107
|
import {
|
|
105
|
-
|
|
106
|
-
} from "./chunk-
|
|
108
|
+
dawnWallet
|
|
109
|
+
} from "./chunk-KZFAL4RZ.js";
|
|
107
110
|
import {
|
|
108
111
|
clvWallet
|
|
109
112
|
} from "./chunk-ND5YG63V.js";
|
|
110
|
-
import {
|
|
111
|
-
coreWallet
|
|
112
|
-
} from "./chunk-BXM2BUWT.js";
|
|
113
113
|
import {
|
|
114
114
|
bitskiWallet
|
|
115
115
|
} from "./chunk-IMZRCMZR.js";
|
|
116
116
|
import {
|
|
117
|
-
|
|
118
|
-
} from "./chunk-
|
|
117
|
+
coreWallet
|
|
118
|
+
} from "./chunk-BXM2BUWT.js";
|
|
119
119
|
import {
|
|
120
120
|
desigWallet
|
|
121
121
|
} from "./chunk-P4C7ZHIS.js";
|
|
122
|
-
import {
|
|
123
|
-
bybitWallet
|
|
124
|
-
} from "./chunk-ZBQT5PV6.js";
|
|
125
122
|
import {
|
|
126
123
|
enkryptWallet
|
|
127
124
|
} from "./chunk-SJWHYD45.js";
|
|
125
|
+
import {
|
|
126
|
+
frameWallet
|
|
127
|
+
} from "./chunk-LR37V45H.js";
|
|
128
128
|
import {
|
|
129
129
|
bifrostWallet
|
|
130
|
-
} from "./chunk-
|
|
130
|
+
} from "./chunk-5NAFNTDG.js";
|
|
131
131
|
import {
|
|
132
132
|
argentWallet
|
|
133
|
-
} from "./chunk-
|
|
134
|
-
import {
|
|
135
|
-
bitgetWallet
|
|
136
|
-
} from "./chunk-EO7KIAWM.js";
|
|
133
|
+
} from "./chunk-CVGDYGHA.js";
|
|
137
134
|
import {
|
|
138
135
|
bitverseWallet
|
|
139
136
|
} from "./chunk-NL4I7WOT.js";
|
|
140
137
|
import {
|
|
141
138
|
bloomWallet
|
|
142
|
-
} from "./chunk-
|
|
143
|
-
import "./chunk-ZOLACFTK.js";
|
|
139
|
+
} from "./chunk-OYW4TIA3.js";
|
|
144
140
|
import {
|
|
145
141
|
braveWallet
|
|
146
142
|
} from "./chunk-KJWMF6GZ.js";
|
|
147
143
|
import {
|
|
148
|
-
|
|
149
|
-
} from "./chunk-
|
|
144
|
+
coinbaseWallet
|
|
145
|
+
} from "./chunk-O77H3VWW.js";
|
|
146
|
+
import {
|
|
147
|
+
bitgetWallet
|
|
148
|
+
} from "./chunk-6LHOZPKY.js";
|
|
150
149
|
import "./chunk-ZDU3JFGR.js";
|
|
151
150
|
import "./chunk-F3VCNZXS.js";
|
|
151
|
+
import "./chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-OBYMPVH3.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-RCUBLYVS.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-EWPQ4636.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-IXI5EXND.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.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-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-BNNARTHK.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.js";
|
|
8
8
|
export {
|
|
9
9
|
trustWallet
|
|
10
10
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
zerionWallet
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-ZOLACFTK.js";
|
|
4
|
+
} from "../chunk-A7DLL4TF.js";
|
|
6
5
|
import "../chunk-ZDU3JFGR.js";
|
|
7
6
|
import "../chunk-F3VCNZXS.js";
|
|
7
|
+
import "../chunk-ZOLACFTK.js";
|
|
8
8
|
export {
|
|
9
9
|
zerionWallet
|
|
10
10
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funkit/connect",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@aws-sdk/client-s3": "^3.600.0",
|
|
47
47
|
"@funkit/eslint-config": "^1.1.1",
|
|
48
48
|
"@testing-library/jest-dom": "^6.2.0",
|
|
49
|
-
"@testing-library/react": "^
|
|
49
|
+
"@testing-library/react": "^15.0.7",
|
|
50
50
|
"@testing-library/user-event": "^14.5.2",
|
|
51
51
|
"@types/qrcode": "^1.5.5",
|
|
52
52
|
"@types/ua-parser-js": "^0.7.39",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"ua-parser-js": "^1.0.37",
|
|
80
80
|
"uuid": "^9.0.1",
|
|
81
81
|
"@funkit/api-base": "1.0.1",
|
|
82
|
-
"@funkit/wagmi-tools": "3.0.
|
|
83
|
-
"@funkit/core": "2.1.
|
|
82
|
+
"@funkit/wagmi-tools": "3.0.3",
|
|
83
|
+
"@funkit/core": "2.1.1"
|
|
84
84
|
},
|
|
85
85
|
"repository": {
|
|
86
86
|
"type": "git",
|