import { getGetServerSideProps } from '@/api/ssrApollo' import Layout from '@/components/layout' import styles from '@/styles/wallet.module.css' import { WalletCard } from '@/components/wallet-card' import { LightningAddressWalletCard } from './lightning-address' import { LNbitsCard } from './lnbits' import { NWCCard } from './nwc' import { LNDCard } from './lnd' import { CLNCard } from './cln' import { WALLETS } from '@/fragments/wallet' import { useQuery } from '@apollo/client' import PageLoading from '@/components/page-loading' import { LNCCard } from './lnc' import Link from 'next/link' import { Wallet as W } from '@/lib/constants' export const getServerSideProps = getGetServerSideProps({ query: WALLETS, authRequired: true }) export default function Wallet ({ ssrData }) { const { data } = useQuery(WALLETS) if (!data && !ssrData) return const { wallets } = data || ssrData const lnd = wallets.find(w => w.type === W.LND.type) const lnaddr = wallets.find(w => w.type === W.LnAddr.type) const cln = wallets.find(w => w.type === W.CLN.type) return (

attach wallets

attach wallets to supplement your SN wallet
wallet logs
) }