Smurfcat is a memecoin launched on the Ethereum blockchain.
Base
eip155:8453
#33352d
SMURFCAT
18
Smurfcat is a memecoin launched on the Ethereum blockchain. It's a tribute to the Smurfcat originally created by Nate Hallinan in 2011, and popularized by TikTok. It began as a fun currency and has evolved into a whole ecosystem revolving around the little guy. As the meme matures, the full Smurfcat story will be revealed. Join us and become part of a movement. Bringing together a community where fun, creativity and mycelium coexist.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0x2809ee30c77d7887e4f77394a1ac0e49de0e397f";
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],
},
};