SMURFCAT is a memecoin launched on the ethereum blockchain.
Ethereum
eip155:1
#33352d
SMURFCAT
18
SMURFCAT is a memecoin launched on the ethereum blockchain. he is so cute! this little guy is just going on his jolly way! The token was created as a tribute to the smurf cat internet meme originally created by Nate Hallinan, and newly popularized by tiktok.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xff836a5821e69066c87e268bc51b849fab94240c";
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],
},
};