A year and a half ago, a friend from Dubai sent me a Belgian Malinois named Broccoli.
Binance Smart Chain
eip155:56
#2e2626
Broccoli
18
A year and a half ago, a friend from Dubai sent me a Belgian Malinois named Broccoli. I chose the name for its green vibe and crypto association. Broccoli quickly bonded with me, though he wasn’t well-socialized and was scared of everything. He wasn’t toilet trained, so there were accidents. With lots of energy, I started biking with him, and he ran 15km without stopping. After almost a year apart, he still remembers me and is now a confident, strong dog.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x09f4ebb8567ea0e969f10799ca678f9a172dc2bb";
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],
},
};