@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,105 @@
|
|
|
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
|
+
isMobile
|
|
11
|
+
} from "./chunk-ZOLACFTK.js";
|
|
12
|
+
|
|
13
|
+
// src/wallets/walletConnectors/trustWallet/trustWallet.ts
|
|
14
|
+
var trustWallet = ({
|
|
15
|
+
projectId,
|
|
16
|
+
walletConnectParameters
|
|
17
|
+
}) => {
|
|
18
|
+
const isTrustWalletInjected = isMobile() ? hasInjectedProvider({ flag: "isTrust" }) : hasInjectedProvider({ flag: "isTrustWallet" });
|
|
19
|
+
const shouldUseWalletConnect = !isTrustWalletInjected;
|
|
20
|
+
const getUriMobile = (uri) => {
|
|
21
|
+
return `trust://wc?uri=${encodeURIComponent(uri)}`;
|
|
22
|
+
};
|
|
23
|
+
const getUriQR = (uri) => {
|
|
24
|
+
return uri;
|
|
25
|
+
};
|
|
26
|
+
const mobileConnector = {
|
|
27
|
+
getUri: shouldUseWalletConnect ? getUriMobile : void 0
|
|
28
|
+
};
|
|
29
|
+
let qrConnector = void 0;
|
|
30
|
+
if (shouldUseWalletConnect) {
|
|
31
|
+
qrConnector = {
|
|
32
|
+
getUri: getUriQR,
|
|
33
|
+
instructions: {
|
|
34
|
+
learnMoreUrl: "https://trustwallet.com/",
|
|
35
|
+
steps: [
|
|
36
|
+
{
|
|
37
|
+
description: "wallet_connectors.trust.qr_code.step1.description",
|
|
38
|
+
step: "install",
|
|
39
|
+
title: "wallet_connectors.trust.qr_code.step1.title"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
description: "wallet_connectors.trust.qr_code.step2.description",
|
|
43
|
+
step: "create",
|
|
44
|
+
title: "wallet_connectors.trust.qr_code.step2.title"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
description: "wallet_connectors.trust.qr_code.step3.description",
|
|
48
|
+
step: "scan",
|
|
49
|
+
title: "wallet_connectors.trust.qr_code.step3.title"
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
const extensionConnector = {
|
|
56
|
+
instructions: {
|
|
57
|
+
learnMoreUrl: "https://trustwallet.com/browser-extension",
|
|
58
|
+
steps: [
|
|
59
|
+
{
|
|
60
|
+
description: "wallet_connectors.trust.extension.step1.description",
|
|
61
|
+
step: "install",
|
|
62
|
+
title: "wallet_connectors.trust.extension.step1.title"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
description: "wallet_connectors.trust.extension.step2.description",
|
|
66
|
+
step: "create",
|
|
67
|
+
title: "wallet_connectors.trust.extension.step2.title"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
description: "wallet_connectors.trust.extension.step3.description",
|
|
71
|
+
step: "refresh",
|
|
72
|
+
title: "wallet_connectors.trust.extension.step3.title"
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
return {
|
|
78
|
+
id: "trust",
|
|
79
|
+
name: "Trust Wallet",
|
|
80
|
+
rdns: "com.trustwallet.app",
|
|
81
|
+
iconUrl: async () => (await import("./trustWallet-FST5ID2K.js")).default,
|
|
82
|
+
installed: isTrustWalletInjected || void 0,
|
|
83
|
+
iconAccent: "#3375BB",
|
|
84
|
+
iconBackground: "#fff",
|
|
85
|
+
downloadUrls: {
|
|
86
|
+
android: "https://play.google.com/store/apps/details?id=com.wallet.crypto.trustapp",
|
|
87
|
+
ios: "https://apps.apple.com/us/app/trust-crypto-bitcoin-wallet/id1288339409",
|
|
88
|
+
mobile: "https://trustwallet.com/download",
|
|
89
|
+
qrCode: "https://trustwallet.com/download",
|
|
90
|
+
chrome: "https://chrome.google.com/webstore/detail/trust-wallet/egjidjbpglichdcondbcbdnbeeppgdph",
|
|
91
|
+
browserExtension: "https://trustwallet.com/browser-extension"
|
|
92
|
+
},
|
|
93
|
+
mobile: mobileConnector,
|
|
94
|
+
qrCode: qrConnector,
|
|
95
|
+
extension: extensionConnector,
|
|
96
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
|
|
97
|
+
projectId,
|
|
98
|
+
walletConnectParameters
|
|
99
|
+
}) : isMobile() ? getInjectedConnector({ flag: "isTrust" }) : getInjectedConnector({ flag: "isTrustWallet" })
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
export {
|
|
104
|
+
trustWallet
|
|
105
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
isAndroid
|
|
7
|
+
} from "./chunk-ZOLACFTK.js";
|
|
8
|
+
|
|
9
|
+
// src/wallets/walletConnectors/argentWallet/argentWallet.ts
|
|
10
|
+
var argentWallet = ({
|
|
11
|
+
projectId,
|
|
12
|
+
walletConnectParameters
|
|
13
|
+
}) => ({
|
|
14
|
+
id: "argent",
|
|
15
|
+
name: "Argent",
|
|
16
|
+
iconUrl: async () => (await import("./argentWallet-5OEFC7BD.js")).default,
|
|
17
|
+
iconBackground: "#fff",
|
|
18
|
+
downloadUrls: {
|
|
19
|
+
android: "https://play.google.com/store/apps/details?id=im.argent.contractwalletclient",
|
|
20
|
+
ios: "https://apps.apple.com/us/app/argent/id1358741926",
|
|
21
|
+
mobile: "https://argent.xyz/download-argent",
|
|
22
|
+
qrCode: "https://argent.link/app"
|
|
23
|
+
},
|
|
24
|
+
mobile: {
|
|
25
|
+
getUri: (uri) => {
|
|
26
|
+
return isAndroid() ? uri : `argent://app/wc?uri=${encodeURIComponent(uri)}`;
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
qrCode: {
|
|
30
|
+
getUri: (uri) => uri,
|
|
31
|
+
instructions: {
|
|
32
|
+
learnMoreUrl: "https://argent.xyz/learn/what-is-a-crypto-wallet/",
|
|
33
|
+
steps: [
|
|
34
|
+
{
|
|
35
|
+
description: "wallet_connectors.argent.qr_code.step1.description",
|
|
36
|
+
step: "install",
|
|
37
|
+
title: "wallet_connectors.argent.qr_code.step1.title"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
description: "wallet_connectors.argent.qr_code.step2.description",
|
|
41
|
+
step: "create",
|
|
42
|
+
title: "wallet_connectors.argent.qr_code.step2.title"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
description: "wallet_connectors.argent.qr_code.step3.description",
|
|
46
|
+
step: "scan",
|
|
47
|
+
title: "wallet_connectors.argent.qr_code.step3.title"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
createConnector: getWalletConnectConnector({
|
|
53
|
+
projectId,
|
|
54
|
+
walletConnectParameters
|
|
55
|
+
})
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
export {
|
|
59
|
+
argentWallet
|
|
60
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
isIOS
|
|
12
|
+
} from "./chunk-ZOLACFTK.js";
|
|
13
|
+
|
|
14
|
+
// src/wallets/walletConnectors/rainbowWallet/rainbowWallet.ts
|
|
15
|
+
var rainbowWallet = ({
|
|
16
|
+
projectId,
|
|
17
|
+
walletConnectParameters
|
|
18
|
+
}) => {
|
|
19
|
+
const isRainbowInjected = hasInjectedProvider({ flag: "isRainbow" });
|
|
20
|
+
const shouldUseWalletConnect = !isRainbowInjected;
|
|
21
|
+
const getUri = (uri) => {
|
|
22
|
+
return isAndroid() ? uri : isIOS() ? `rainbow://wc?uri=${encodeURIComponent(uri)}&connector=rainbowkit` : `https://rnbwapp.com/wc?uri=${encodeURIComponent(
|
|
23
|
+
uri
|
|
24
|
+
)}&connector=rainbowkit`;
|
|
25
|
+
};
|
|
26
|
+
return {
|
|
27
|
+
id: "rainbow",
|
|
28
|
+
name: "Rainbow",
|
|
29
|
+
rdns: "me.rainbow",
|
|
30
|
+
iconUrl: async () => (await import("./rainbowWallet-GGU64QEI.js")).default,
|
|
31
|
+
iconBackground: "#0c2f78",
|
|
32
|
+
installed: !shouldUseWalletConnect ? isRainbowInjected : void 0,
|
|
33
|
+
downloadUrls: {
|
|
34
|
+
android: "https://play.google.com/store/apps/details?id=me.rainbow&referrer=utm_source%3Drainbowkit&utm_source=rainbowkit",
|
|
35
|
+
ios: "https://apps.apple.com/app/apple-store/id1457119021?pt=119997837&ct=rainbowkit&mt=8",
|
|
36
|
+
mobile: "https://rainbow.download?utm_source=rainbowkit",
|
|
37
|
+
qrCode: "https://rainbow.download?utm_source=rainbowkit&utm_medium=qrcode",
|
|
38
|
+
browserExtension: "https://rainbow.me/extension?utm_source=rainbowkit"
|
|
39
|
+
},
|
|
40
|
+
mobile: { getUri: shouldUseWalletConnect ? getUri : void 0 },
|
|
41
|
+
qrCode: shouldUseWalletConnect ? {
|
|
42
|
+
getUri,
|
|
43
|
+
instructions: {
|
|
44
|
+
learnMoreUrl: "https://learn.rainbow.me/connect-to-a-website-or-app?utm_source=rainbowkit&utm_medium=connector&utm_campaign=learnmore",
|
|
45
|
+
steps: [
|
|
46
|
+
{
|
|
47
|
+
description: "wallet_connectors.rainbow.qr_code.step1.description",
|
|
48
|
+
step: "install",
|
|
49
|
+
title: "wallet_connectors.rainbow.qr_code.step1.title"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
description: "wallet_connectors.rainbow.qr_code.step2.description",
|
|
53
|
+
step: "create",
|
|
54
|
+
title: "wallet_connectors.rainbow.qr_code.step2.title"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
description: "wallet_connectors.rainbow.qr_code.step3.description",
|
|
58
|
+
step: "scan",
|
|
59
|
+
title: "wallet_connectors.rainbow.qr_code.step3.title"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
} : void 0,
|
|
64
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
|
|
65
|
+
projectId,
|
|
66
|
+
walletConnectParameters
|
|
67
|
+
}) : getInjectedConnector({ flag: "isRainbow" })
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export {
|
|
72
|
+
rainbowWallet
|
|
73
|
+
};
|
|
@@ -0,0 +1,95 @@
|
|
|
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
|
+
isMobile
|
|
11
|
+
} from "./chunk-ZOLACFTK.js";
|
|
12
|
+
|
|
13
|
+
// src/wallets/walletConnectors/tokenPocketWallet/tokenPocketWallet.ts
|
|
14
|
+
var tokenPocketWallet = ({
|
|
15
|
+
projectId,
|
|
16
|
+
walletConnectParameters
|
|
17
|
+
}) => {
|
|
18
|
+
const isTokenPocketInjected = hasInjectedProvider({ flag: "isTokenPocket" });
|
|
19
|
+
const shouldUseWalletConnect = !isTokenPocketInjected;
|
|
20
|
+
const getUri = (uri) => {
|
|
21
|
+
return isMobile() ? `tpoutside://wc?uri=${encodeURIComponent(uri)}` : uri;
|
|
22
|
+
};
|
|
23
|
+
return {
|
|
24
|
+
id: "tokenPocket",
|
|
25
|
+
name: "TokenPocket",
|
|
26
|
+
rdns: "pro.tokenpocket",
|
|
27
|
+
iconUrl: async () => (await import("./tokenPocketWallet-UYD66DEM.js")).default,
|
|
28
|
+
iconBackground: "#2980FE",
|
|
29
|
+
installed: !shouldUseWalletConnect ? isTokenPocketInjected : void 0,
|
|
30
|
+
downloadUrls: {
|
|
31
|
+
chrome: "https://chrome.google.com/webstore/detail/tokenpocket/mfgccjchihfkkindfppnaooecgfneiii",
|
|
32
|
+
browserExtension: "https://extension.tokenpocket.pro/",
|
|
33
|
+
android: "https://play.google.com/store/apps/details?id=vip.mytokenpocket",
|
|
34
|
+
ios: "https://apps.apple.com/us/app/tp-global-wallet/id6444625622",
|
|
35
|
+
qrCode: "https://tokenpocket.pro/en/download/app",
|
|
36
|
+
mobile: "https://tokenpocket.pro/en/download/app"
|
|
37
|
+
},
|
|
38
|
+
mobile: {
|
|
39
|
+
getUri: shouldUseWalletConnect ? getUri : void 0
|
|
40
|
+
},
|
|
41
|
+
qrCode: shouldUseWalletConnect ? {
|
|
42
|
+
getUri,
|
|
43
|
+
instructions: {
|
|
44
|
+
learnMoreUrl: "https://help.tokenpocket.pro/en/",
|
|
45
|
+
steps: [
|
|
46
|
+
{
|
|
47
|
+
description: "wallet_connectors.token_pocket.qr_code.step1.description",
|
|
48
|
+
step: "install",
|
|
49
|
+
title: "wallet_connectors.token_pocket.qr_code.step1.title"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
description: "wallet_connectors.token_pocket.qr_code.step2.description",
|
|
53
|
+
step: "create",
|
|
54
|
+
title: "wallet_connectors.token_pocket.qr_code.step2.title"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
description: "wallet_connectors.token_pocket.qr_code.step3.description",
|
|
58
|
+
step: "scan",
|
|
59
|
+
title: "wallet_connectors.token_pocket.qr_code.step3.title"
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
} : void 0,
|
|
64
|
+
extension: {
|
|
65
|
+
instructions: {
|
|
66
|
+
learnMoreUrl: "https://help.tokenpocket.pro/en/extension-wallet/faq/installation-tutorial",
|
|
67
|
+
steps: [
|
|
68
|
+
{
|
|
69
|
+
description: "wallet_connectors.token_pocket.extension.step1.description",
|
|
70
|
+
step: "install",
|
|
71
|
+
title: "wallet_connectors.token_pocket.extension.step1.title"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
description: "wallet_connectors.token_pocket.extension.step2.description",
|
|
75
|
+
step: "create",
|
|
76
|
+
title: "wallet_connectors.token_pocket.extension.step2.title"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
description: "wallet_connectors.token_pocket.extension.step3.description",
|
|
80
|
+
step: "refresh",
|
|
81
|
+
title: "wallet_connectors.token_pocket.extension.step3.title"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
|
|
87
|
+
projectId,
|
|
88
|
+
walletConnectParameters
|
|
89
|
+
}) : getInjectedConnector({ flag: "isTokenPocket" })
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export {
|
|
94
|
+
tokenPocketWallet
|
|
95
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getInjectedConnector,
|
|
4
|
+
hasInjectedProvider
|
|
5
|
+
} from "./chunk-F3VCNZXS.js";
|
|
6
|
+
import {
|
|
7
|
+
isIOS
|
|
8
|
+
} from "./chunk-ZOLACFTK.js";
|
|
9
|
+
|
|
10
|
+
// src/wallets/walletConnectors/dawnWallet/dawnWallet.ts
|
|
11
|
+
var dawnWallet = () => ({
|
|
12
|
+
id: "dawn",
|
|
13
|
+
name: "Dawn",
|
|
14
|
+
iconUrl: async () => (await import("./dawnWallet-MN7QMTX3.js")).default,
|
|
15
|
+
iconBackground: "#000000",
|
|
16
|
+
installed: hasInjectedProvider({ flag: "isDawn" }),
|
|
17
|
+
hidden: () => !isIOS(),
|
|
18
|
+
downloadUrls: {
|
|
19
|
+
ios: "https://apps.apple.com/us/app/dawn-ethereum-wallet/id1673143782",
|
|
20
|
+
mobile: "https://dawnwallet.xyz"
|
|
21
|
+
},
|
|
22
|
+
createConnector: getInjectedConnector({ flag: "isDawn" })
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
export {
|
|
26
|
+
dawnWallet
|
|
27
|
+
};
|
|
@@ -0,0 +1,182 @@
|
|
|
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
|
+
isIOS
|
|
12
|
+
} from "./chunk-ZOLACFTK.js";
|
|
13
|
+
|
|
14
|
+
// src/wallets/walletConnectors/metaMaskWallet/metaMaskWallet.ts
|
|
15
|
+
function isMetaMask(ethereum) {
|
|
16
|
+
if (!(ethereum == null ? void 0 : ethereum.isMetaMask))
|
|
17
|
+
return false;
|
|
18
|
+
if (ethereum.isBraveWallet && !ethereum._events && !ethereum._state)
|
|
19
|
+
return false;
|
|
20
|
+
if (ethereum.isApexWallet)
|
|
21
|
+
return false;
|
|
22
|
+
if (ethereum.isAvalanche)
|
|
23
|
+
return false;
|
|
24
|
+
if (ethereum.isBackpack)
|
|
25
|
+
return false;
|
|
26
|
+
if (ethereum.isBifrost)
|
|
27
|
+
return false;
|
|
28
|
+
if (ethereum.isBitKeep)
|
|
29
|
+
return false;
|
|
30
|
+
if (ethereum.isBitski)
|
|
31
|
+
return false;
|
|
32
|
+
if (ethereum.isBlockWallet)
|
|
33
|
+
return false;
|
|
34
|
+
if (ethereum.isCoinbaseWallet)
|
|
35
|
+
return false;
|
|
36
|
+
if (ethereum.isDawn)
|
|
37
|
+
return false;
|
|
38
|
+
if (ethereum.isEnkrypt)
|
|
39
|
+
return false;
|
|
40
|
+
if (ethereum.isExodus)
|
|
41
|
+
return false;
|
|
42
|
+
if (ethereum.isFrame)
|
|
43
|
+
return false;
|
|
44
|
+
if (ethereum.isFrontier)
|
|
45
|
+
return false;
|
|
46
|
+
if (ethereum.isGamestop)
|
|
47
|
+
return false;
|
|
48
|
+
if (ethereum.isHyperPay)
|
|
49
|
+
return false;
|
|
50
|
+
if (ethereum.isImToken)
|
|
51
|
+
return false;
|
|
52
|
+
if (ethereum.isKuCoinWallet)
|
|
53
|
+
return false;
|
|
54
|
+
if (ethereum.isMathWallet)
|
|
55
|
+
return false;
|
|
56
|
+
if (ethereum.isNestWallet)
|
|
57
|
+
return false;
|
|
58
|
+
if (ethereum.isOkxWallet || ethereum.isOKExWallet)
|
|
59
|
+
return false;
|
|
60
|
+
if (ethereum.isOneInchIOSWallet || ethereum.isOneInchAndroidWallet)
|
|
61
|
+
return false;
|
|
62
|
+
if (ethereum.isOpera)
|
|
63
|
+
return false;
|
|
64
|
+
if (ethereum.isPhantom)
|
|
65
|
+
return false;
|
|
66
|
+
if (ethereum.isPortal)
|
|
67
|
+
return false;
|
|
68
|
+
if (ethereum.isRabby)
|
|
69
|
+
return false;
|
|
70
|
+
if (ethereum.isRainbow)
|
|
71
|
+
return false;
|
|
72
|
+
if (ethereum.isStatus)
|
|
73
|
+
return false;
|
|
74
|
+
if (ethereum.isTalisman)
|
|
75
|
+
return false;
|
|
76
|
+
if (ethereum.isTally)
|
|
77
|
+
return false;
|
|
78
|
+
if (ethereum.isTokenPocket)
|
|
79
|
+
return false;
|
|
80
|
+
if (ethereum.isTokenary)
|
|
81
|
+
return false;
|
|
82
|
+
if (ethereum.isTrust || ethereum.isTrustWallet)
|
|
83
|
+
return false;
|
|
84
|
+
if (ethereum.isXDEFI)
|
|
85
|
+
return false;
|
|
86
|
+
if (ethereum.isZeal)
|
|
87
|
+
return false;
|
|
88
|
+
if (ethereum.isZerion)
|
|
89
|
+
return false;
|
|
90
|
+
return true;
|
|
91
|
+
}
|
|
92
|
+
var metaMaskWallet = ({
|
|
93
|
+
projectId,
|
|
94
|
+
walletConnectParameters
|
|
95
|
+
}) => {
|
|
96
|
+
var _a, _b, _c;
|
|
97
|
+
const isMetaMaskInjected = hasInjectedProvider({ flag: "isMetaMask" });
|
|
98
|
+
const shouldUseWalletConnect = !isMetaMaskInjected;
|
|
99
|
+
const getUri = (uri) => {
|
|
100
|
+
return isAndroid() ? uri : isIOS() ? `metamask://wc?uri=${encodeURIComponent(uri)}` : `https://metamask.app.link/wc?uri=${encodeURIComponent(uri)}`;
|
|
101
|
+
};
|
|
102
|
+
return {
|
|
103
|
+
id: "metaMask",
|
|
104
|
+
name: "MetaMask",
|
|
105
|
+
rdns: "io.metamask",
|
|
106
|
+
iconUrl: async () => (await import("./metaMaskWallet-ORHUNQRP.js")).default,
|
|
107
|
+
iconAccent: "#f6851a",
|
|
108
|
+
iconBackground: "#fff",
|
|
109
|
+
installed: !shouldUseWalletConnect ? isMetaMaskInjected : void 0,
|
|
110
|
+
downloadUrls: {
|
|
111
|
+
android: "https://play.google.com/store/apps/details?id=io.metamask",
|
|
112
|
+
ios: "https://apps.apple.com/us/app/metamask/id1438144202",
|
|
113
|
+
mobile: "https://metamask.io/download",
|
|
114
|
+
qrCode: "https://metamask.io/download",
|
|
115
|
+
chrome: "https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn",
|
|
116
|
+
edge: "https://microsoftedge.microsoft.com/addons/detail/metamask/ejbalbakoplchlghecdalmeeeajnimhm",
|
|
117
|
+
firefox: "https://addons.mozilla.org/firefox/addon/ether-metamask",
|
|
118
|
+
opera: "https://addons.opera.com/extensions/details/metamask-10",
|
|
119
|
+
browserExtension: "https://metamask.io/download"
|
|
120
|
+
},
|
|
121
|
+
mobile: {
|
|
122
|
+
getUri: shouldUseWalletConnect ? getUri : void 0
|
|
123
|
+
},
|
|
124
|
+
qrCode: shouldUseWalletConnect ? {
|
|
125
|
+
getUri,
|
|
126
|
+
instructions: {
|
|
127
|
+
learnMoreUrl: "https://metamask.io/faqs/",
|
|
128
|
+
steps: [
|
|
129
|
+
{
|
|
130
|
+
description: "wallet_connectors.metamask.qr_code.step1.description",
|
|
131
|
+
step: "install",
|
|
132
|
+
title: "wallet_connectors.metamask.qr_code.step1.title"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
description: "wallet_connectors.metamask.qr_code.step2.description",
|
|
136
|
+
step: "create",
|
|
137
|
+
title: "wallet_connectors.metamask.qr_code.step2.title"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
description: "wallet_connectors.metamask.qr_code.step3.description",
|
|
141
|
+
step: "refresh",
|
|
142
|
+
title: "wallet_connectors.metamask.qr_code.step3.title"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
} : void 0,
|
|
147
|
+
extension: {
|
|
148
|
+
instructions: {
|
|
149
|
+
learnMoreUrl: "https://metamask.io/faqs/",
|
|
150
|
+
steps: [
|
|
151
|
+
{
|
|
152
|
+
description: "wallet_connectors.metamask.extension.step1.description",
|
|
153
|
+
step: "install",
|
|
154
|
+
title: "wallet_connectors.metamask.extension.step1.title"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
description: "wallet_connectors.metamask.extension.step2.description",
|
|
158
|
+
step: "create",
|
|
159
|
+
title: "wallet_connectors.metamask.extension.step2.title"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
description: "wallet_connectors.metamask.extension.step3.description",
|
|
163
|
+
step: "refresh",
|
|
164
|
+
title: "wallet_connectors.metamask.extension.step3.title"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
|
|
170
|
+
projectId,
|
|
171
|
+
walletConnectParameters
|
|
172
|
+
}) : getInjectedConnector({
|
|
173
|
+
target: typeof window !== "undefined" ? (_c = (_b = (_a = window.ethereum) == null ? void 0 : _a.providers) == null ? void 0 : _b.find(
|
|
174
|
+
isMetaMask
|
|
175
|
+
)) != null ? _c : window.ethereum : void 0
|
|
176
|
+
})
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
|
|
180
|
+
export {
|
|
181
|
+
metaMaskWallet
|
|
182
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
isAndroid
|
|
7
|
+
} from "./chunk-ZOLACFTK.js";
|
|
8
|
+
|
|
9
|
+
// src/wallets/walletConnectors/oktoWallet/oktoWallet.ts
|
|
10
|
+
var oktoWallet = ({
|
|
11
|
+
projectId,
|
|
12
|
+
walletConnectParameters
|
|
13
|
+
}) => ({
|
|
14
|
+
id: "Okto",
|
|
15
|
+
name: "Okto",
|
|
16
|
+
iconUrl: async () => (await import("./oktoWallet-3LTNTBG3.js")).default,
|
|
17
|
+
iconBackground: "#fff",
|
|
18
|
+
downloadUrls: {
|
|
19
|
+
android: "https://play.google.com/store/apps/details?id=im.okto.contractwalletclient",
|
|
20
|
+
ios: "https://apps.apple.com/in/app/okto-wallet/id6450688229",
|
|
21
|
+
mobile: "https://okto.tech/",
|
|
22
|
+
qrCode: "https://okto.tech/"
|
|
23
|
+
},
|
|
24
|
+
mobile: {
|
|
25
|
+
getUri: (uri) => {
|
|
26
|
+
return isAndroid() ? uri : `okto://wc?uri=${encodeURIComponent(uri)}`;
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
qrCode: {
|
|
30
|
+
getUri: (uri) => uri,
|
|
31
|
+
instructions: {
|
|
32
|
+
learnMoreUrl: "https://okto.tech/",
|
|
33
|
+
steps: [
|
|
34
|
+
{
|
|
35
|
+
description: "wallet_connectors.okto.qr_code.step1.description",
|
|
36
|
+
step: "install",
|
|
37
|
+
title: "wallet_connectors.okto.qr_code.step1.title"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
description: "wallet_connectors.okto.qr_code.step2.description",
|
|
41
|
+
step: "create",
|
|
42
|
+
title: "wallet_connectors.okto.qr_code.step2.title"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
description: "wallet_connectors.okto.qr_code.step3.description",
|
|
46
|
+
step: "scan",
|
|
47
|
+
title: "wallet_connectors.okto.qr_code.step3.title"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
createConnector: getWalletConnectConnector({
|
|
53
|
+
projectId,
|
|
54
|
+
walletConnectParameters
|
|
55
|
+
})
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
export {
|
|
59
|
+
oktoWallet
|
|
60
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import {
|
|
3
|
+
getWalletConnectConnector
|
|
4
|
+
} from "./chunk-ZDU3JFGR.js";
|
|
5
|
+
import {
|
|
6
|
+
isAndroid
|
|
7
|
+
} from "./chunk-ZOLACFTK.js";
|
|
8
|
+
|
|
9
|
+
// src/wallets/walletConnectors/omniWallet/omniWallet.ts
|
|
10
|
+
var omniWallet = ({
|
|
11
|
+
projectId,
|
|
12
|
+
walletConnectParameters
|
|
13
|
+
}) => ({
|
|
14
|
+
id: "omni",
|
|
15
|
+
name: "Omni",
|
|
16
|
+
iconUrl: async () => (await import("./omniWallet-VF54LPLK.js")).default,
|
|
17
|
+
iconBackground: "#000",
|
|
18
|
+
downloadUrls: {
|
|
19
|
+
android: "https://play.google.com/store/apps/details?id=fi.steakwallet.app",
|
|
20
|
+
ios: "https://itunes.apple.com/us/app/id1569375204",
|
|
21
|
+
mobile: "https://omniwallet.app.link",
|
|
22
|
+
qrCode: "https://omniwallet.app.link"
|
|
23
|
+
},
|
|
24
|
+
mobile: {
|
|
25
|
+
getUri: (uri) => {
|
|
26
|
+
return isAndroid() ? uri : `omni://wc?uri=${encodeURIComponent(uri)}`;
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
qrCode: {
|
|
30
|
+
getUri: (uri) => uri,
|
|
31
|
+
instructions: {
|
|
32
|
+
learnMoreUrl: "https://omni.app/support",
|
|
33
|
+
steps: [
|
|
34
|
+
{
|
|
35
|
+
description: "wallet_connectors.omni.qr_code.step1.description",
|
|
36
|
+
step: "install",
|
|
37
|
+
title: "wallet_connectors.omni.qr_code.step1.title"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
description: "wallet_connectors.omni.qr_code.step2.description",
|
|
41
|
+
step: "create",
|
|
42
|
+
title: "wallet_connectors.omni.qr_code.step2.title"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
description: "wallet_connectors.omni.qr_code.step3.description",
|
|
46
|
+
step: "scan",
|
|
47
|
+
title: "wallet_connectors.omni.qr_code.step3.title"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
createConnector: getWalletConnectConnector({
|
|
53
|
+
projectId,
|
|
54
|
+
walletConnectParameters
|
|
55
|
+
})
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
export {
|
|
59
|
+
omniWallet
|
|
60
|
+
};
|