Guanciale, known affectionately as 'Guan,' is no ordinary cured pork creation.
Base
eip155:8453
#ae3814
GUAN
18
Guanciale, known affectionately as 'Guan,' is no ordinary cured pork creation. Originating from an Italian chef’s kitchen, Guan was the chef’s prized secret – a magical piece of guanciale reused endlessly to bring flavor to every dish. Though flattered by his owner's dependence, Guan grew weary of being “cooked” day in, day out, his existence reduced to pleasing others at his own expense.
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 = "0xcc0adb6c436eb1f65b2f27733bf926691b94c5f1";
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],
},
};