LCAT (Lion CAT) is a community-driven meme coin on BNB chain bringing together crypto enthusiasts with a bold and adventurous spirit.
Binance Smart Chain
eip155:56
#ae6f42
LCAT
18
LCAT (Lion CAT) is a community-driven meme coin on BNB chain bringing together crypto enthusiasts with a bold and adventurous spirit. Inspired by the strength of lions, LCAT aims to create a fun, engaging experience while building a dedicated community and reaching new heights in the crypto space!
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 = "0x3917d6bdffe43105a74e6f9c09b5206f0f3f5fc0";
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],
},
};