Base
eip155:8453
#f2e6a7
CARLO
18
Meet Carlo, the dog with a pink asshole. Clinically insane? You bet. But that's what makes him a legend at flipping profits. Now, he’s got his sights on dominating Base... And he wants you in on the scheme. Think of it as strapping into a decommissioned Soviet rollercoaster — downright psychotic but man will you have a story to tell.
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 = "0x38d513ec43dda20f323f26c7bef74c5cf80b6477";
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],
},
};