Blast
eip155:81457
#f7cb1e
PACM
18
Unruggable meme with burnt LP. P@cman Blastoff is the legendary 69th memecoin, fueled by Pacman Blur's wild vision. Show how much you love Pacman and his beast Blast L2 by owning $PACM. Get ready for the ride!
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "81457";
const address = "0x0b4d0ee29857c3961b380d4ec138ea5814e346b9";
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],
},
};