import { STATIC_IMAGES_URL } from "@hey/data/constants"; interface WalletDetails { logo: string; name: string; } const WALLETS = { familyAccountsProvider: { logo: `${STATIC_IMAGES_URL}/wallets/family.png`, name: "Login with Family" }, injected: { logo: `${STATIC_IMAGES_URL}/wallets/wallet.svg`, name: "Browser Wallet" }, walletConnect: { logo: `${STATIC_IMAGES_URL}/wallets/walletconnect.svg`, name: "Wallet Connect" } }; type WalletId = keyof typeof WALLETS; const getWalletDetails = (id: WalletId): WalletDetails => { return WALLETS[id]; }; export default getWalletDetails;