Cryptonlyfanz is a decentralized social network dedicated to providing a platform that connects exclusive influencer content and their fanz like never before.
Binance Smart Chain
eip155:56
#e3d6e9
COF
9
Cryptonlyfanz is a decentralized social network dedicated to providing a platform that connects exclusive influencer content and their fanz like never before. Our decentralized platform is powered by COF Token; a cryptocurrency with embedded features that sustains a low-cost environment where content creators and subscribers can connect with little interference from a third party. To learn more please reference our “
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xc477c189d6c572f6c618ea76658b062b1530224c";
const frontmatter = await xmatter.getFrontmatter(chainId, address);
return (
<div>
<XmatterIcon
client={xmatter}
chainId={chainId}
address={address}
width={64} height={64}
alt={`${frontmatter.name} Icon`}
fallback={<div className="size-[64px] rounded-full bg-[#aaa]" />}
/>
<h1>{frontmatter.name}</h1>
<p>{frontmatter.symbol}: {frontmatter.decimals} decimals</p>
</div>
);
}import { RemotePattern } from "xmatter/next";
const nextConfig = {
images: {
remotePatterns: [RemotePattern],
},
};