@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
57 lines (54 loc) • 1.93 kB
JavaScript
"use client";
import {
getInjectedConnector,
hasInjectedProvider
} from "./chunk-DNSG5Q7V.js";
// src/wallets/walletConnectors/oneKeyWallet/oneKeyWallet.ts
var oneKeyWallet = () => {
return {
id: "onekey",
name: "OneKey",
rdns: "so.onekey.app.wallet",
iconAccent: "#00B812",
iconBackground: "#fff",
iconUrl: async () => (await import("./oneKeyWallet-YVJDPHJS.js")).default,
installed: hasInjectedProvider({ namespace: "$onekey.ethereum" }),
downloadUrls: {
android: "https://play.google.com/store/apps/details?id=so.onekey.app.wallet",
browserExtension: "https://www.onekey.so/download/",
chrome: "https://chrome.google.com/webstore/detail/onekey/jnmbobjmhlngoefaiojfljckilhhlhcj",
edge: "https://microsoftedge.microsoft.com/addons/detail/onekey/obffkkagpmohennipjokmpllocnlndac",
ios: "https://apps.apple.com/us/app/onekey-open-source-wallet/id1609559473",
mobile: "https://www.onekey.so/download/",
qrCode: "https://www.onekey.so/download/"
},
extension: {
instructions: {
learnMoreUrl: "https://help.onekey.so/hc/en-us/categories/360000170236",
steps: [
{
description: "wallet_connectors.one_key.extension.step1.description",
step: "install",
title: "wallet_connectors.one_key.extension.step1.title"
},
{
description: "wallet_connectors.one_key.extension.step2.description",
step: "create",
title: "wallet_connectors.one_key.extension.step2.title"
},
{
description: "wallet_connectors.one_key.extension.step3.description",
step: "refresh",
title: "wallet_connectors.one_key.extension.step3.title"
}
]
}
},
createConnector: getInjectedConnector({
namespace: "$onekey.ethereum"
})
};
};
export {
oneKeyWallet
};