@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
51 lines (48 loc) • 1.5 kB
JavaScript
"use client";
import {
getInjectedConnector,
hasInjectedProvider
} from "./chunk-DNSG5Q7V.js";
// src/wallets/walletConnectors/tahoWallet/tahoWallet.ts
var tahoWallet = () => {
return {
id: "taho",
name: "Taho",
iconBackground: "#d08d57",
iconUrl: async () => (await import("./tahoWallet-U2VWWO76.js")).default,
downloadUrls: {
chrome: "https://chrome.google.com/webstore/detail/taho/eajafomhmkipbjmfmhebemolkcicgfmd",
browserExtension: "https://taho.xyz"
},
installed: hasInjectedProvider({ namespace: "tally", flag: "isTally" }),
extension: {
instructions: {
learnMoreUrl: "https://tahowallet.notion.site/Taho-Knowledge-Base-4d95ed5439c64d6db3d3d27abf1fdae5",
steps: [
{
description: "wallet_connectors.taho.extension.step1.description",
step: "install",
title: "wallet_connectors.taho.extension.step1.title"
},
{
description: "wallet_connectors.taho.extension.step2.description",
step: "create",
title: "wallet_connectors.taho.extension.step2.title"
},
{
description: "wallet_connectors.taho.extension.step3.description",
step: "refresh",
title: "wallet_connectors.taho.extension.step3.title"
}
]
}
},
createConnector: getInjectedConnector({
namespace: "tally",
flag: "isTally"
})
};
};
export {
tahoWallet
};