BabyBroccoli ($BABYBROCCOLI) is a crypto memecoin that has emerged as the playful, 'baby' version of the $Broccoli token, inspired by Changpeng Zhao (CZ)'s dog named Broccoli, which he officially ann…
Binance Smart Chain
eip155:56
#e69b3a
BABYBROCCOLI
18
BabyBroccoli ($BABYBROCCOLI) is a crypto memecoin that has emerged as the playful, 'baby' version of the $Broccoli token, inspired by Changpeng Zhao (CZ)'s dog named Broccoli, which he officially announced on X. Positioned as a community-driven project on the BNB Chain, $BABYBROCCOLI rewards its holders with official $Broccoli tokens.
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 = "0x60b1b7eed75a787ab7f3e92dbf5e8af382bb1a6b";
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],
},
};