Catboy is a community led NFT project, founded and built, by comic, manga, anime, and pet lovers.
Binance Smart Chain
eip155:56
#d5ae87
CATBOY
18
Catboy is a community led NFT project, founded and built, by comic, manga, anime, and pet lovers. This token is a symbol of the spirit, cohesion, and sharing of memes, manga and comic loving communities around the world. Besides building a strong community. Catboy cares about the real value that the project brings. Bringing Catboy merchandise, a Catboy NFT marketplace, and building a worldwide network of users to donate to feral cats and support struggling cat owners. Catboy has three different NFT editions which are available on CatBoys own dapp.
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 = "0x39c3f75b837eae0d6d0ea87425ac99bd646a7b1e";
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],
},
};