@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
101 lines (98 loc) • 3.18 kB
JavaScript
"use client";
import {
getWalletConnectConnector
} from "./chunk-23WIEY36.js";
import {
getInjectedConnector,
hasInjectedProvider
} from "./chunk-DNSG5Q7V.js";
// src/wallets/walletConnectors/zerionWallet/zerionWallet.ts
import { isIOS } from "@funkit/utils";
var zerionWallet = ({
projectId,
walletConnectParameters
}) => {
const isZerionInjected = hasInjectedProvider({
namespace: "zerionWallet",
flag: "isZerion"
});
const shouldUseWalletConnect = !isZerionInjected;
const getUri = (uri) => {
return isIOS() ? `zerion://wc?uri=${encodeURIComponent(uri)}` : uri;
};
return {
id: "zerion",
name: "Zerion",
rdns: "io.zerion.wallet",
iconUrl: async () => (await import("./zerionWallet-SEPREHKH.js")).default,
iconAccent: "#2962ef",
iconBackground: "#2962ef",
installed: !shouldUseWalletConnect ? isZerionInjected : void 0,
downloadUrls: {
android: "https://play.google.com/store/apps/details?id=io.zerion.android",
ios: "https://apps.apple.com/app/apple-store/id1456732565",
mobile: "https://link.zerion.io/pt3gdRP0njb",
qrCode: "https://link.zerion.io/pt3gdRP0njb",
chrome: "https://chrome.google.com/webstore/detail/klghhnkeealcohjjanjjdaeeggmfmlpl",
browserExtension: "https://zerion.io/extension"
},
mobile: {
getUri: shouldUseWalletConnect ? getUri : void 0
},
qrCode: shouldUseWalletConnect ? {
getUri,
instructions: {
learnMoreUrl: "https://zerion.io/blog/announcing-the-zerion-smart-wallet/",
steps: [
{
description: "wallet_connectors.zerion.qr_code.step1.description",
step: "install",
title: "wallet_connectors.zerion.qr_code.step1.title"
},
{
description: "wallet_connectors.zerion.qr_code.step2.description",
step: "create",
title: "wallet_connectors.zerion.qr_code.step2.title"
},
{
description: "wallet_connectors.zerion.qr_code.step3.description",
step: "scan",
title: "wallet_connectors.zerion.qr_code.step3.title"
}
]
}
} : void 0,
extension: {
instructions: {
learnMoreUrl: "https://help.zerion.io/en/",
steps: [
{
description: "wallet_connectors.zerion.extension.step1.description",
step: "install",
title: "wallet_connectors.zerion.extension.step1.title"
},
{
description: "wallet_connectors.zerion.extension.step2.description",
step: "create",
title: "wallet_connectors.zerion.extension.step2.title"
},
{
description: "wallet_connectors.zerion.extension.step3.description",
step: "refresh",
title: "wallet_connectors.zerion.extension.step3.title"
}
]
}
},
createConnector: shouldUseWalletConnect ? getWalletConnectConnector({
projectId,
walletConnectParameters
}) : getInjectedConnector({
namespace: "zerionWallet",
flag: "isZerion"
})
};
};
export {
zerionWallet
};