@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
80 lines (77 loc) • 2.3 kB
JavaScript
"use client";
import {
getWalletConnectConnector
} from "./chunk-23WIEY36.js";
// src/wallets/walletConnectors/bloomWallet/bloomWallet.ts
import { isMobile } from "@funkit/utils";
var bloomWallet = ({
projectId,
walletConnectParameters
}) => ({
id: "bloomWallet",
name: "Bloom Wallet",
iconBackground: "#000",
iconAccent: "#000",
hidden: () => isMobile(),
iconUrl: async () => (await import("./bloomWallet-MJRQJYSG.js")).default,
downloadUrls: {
qrCode: "https://bloomwallet.io/",
windows: "https://bloomwallet.io/",
macos: "https://bloomwallet.io/",
linux: "https://bloomwallet.io/",
desktop: "https://bloomwallet.io/"
},
qrCode: {
getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
instructions: {
learnMoreUrl: "https://bloomwallet.io/",
steps: [
{
description: "wallet_connectors.bloom.qr_code.step1.description",
step: "install",
title: "wallet_connectors.bloom.qr_code.step1.title"
},
{
description: "wallet_connectors.bloom.qr_code.step2.description",
step: "create",
title: "wallet_connectors.bloom.qr_code.step2.title"
},
{
description: "wallet_connectors.bloom.qr_code.step3.description",
step: "refresh",
title: "wallet_connectors.bloom.qr_code.step3.title"
}
]
}
},
desktop: {
getUri: (uri) => `bloom://wallet-connect/wc?uri=${encodeURIComponent(uri)}`,
instructions: {
learnMoreUrl: "https://bloomwallet.io/",
steps: [
{
description: "wallet_connectors.bloom.desktop.step1.description",
step: "install",
title: "wallet_connectors.bloom.desktop.step1.title"
},
{
description: "wallet_connectors.bloom.desktop.step2.description",
step: "create",
title: "wallet_connectors.bloom.desktop.step2.title"
},
{
description: "wallet_connectors.bloom.desktop.step3.description",
step: "refresh",
title: "wallet_connectors.bloom.desktop.step3.title"
}
]
}
},
createConnector: getWalletConnectConnector({
projectId,
walletConnectParameters
})
});
export {
bloomWallet
};