Catvills is a community build platform with various utilities.
Binance Smart Chain
eip155:56
#1f1e1d
CATVILLS
8
Catvills is a community build platform with various utilities. Catvills is providing a platform that will increase value that is realistic and will be felt by its holders, by marketing and achieving its goals. This is the anchor on why we created Catvills, and with Catvills creating events and charity for cats all around the world. These are our realistic steps to give back and one of our main functions for Catvills.
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 = "0xa531a733070a5ff4866d1327d82e403fa35290a6";
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],
},
};