Hey is a decentralized and permissionless social media app built with Lens Protocol 馃尶
at main 29 lines 624 B view raw
1import { STATIC_IMAGES_URL } from "@hey/data/constants"; 2 3interface WalletDetails { 4 logo: string; 5 name: string; 6} 7 8const WALLETS = { 9 familyAccountsProvider: { 10 logo: `${STATIC_IMAGES_URL}/wallets/family.png`, 11 name: "Login with Family" 12 }, 13 injected: { 14 logo: `${STATIC_IMAGES_URL}/wallets/wallet.svg`, 15 name: "Browser Wallet" 16 }, 17 walletConnect: { 18 logo: `${STATIC_IMAGES_URL}/wallets/walletconnect.svg`, 19 name: "Wallet Connect" 20 } 21}; 22 23type WalletId = keyof typeof WALLETS; 24 25const getWalletDetails = (id: WalletId): WalletDetails => { 26 return WALLETS[id]; 27}; 28 29export default getWalletDetails;