Fair launched on June 1 2021, Cavapoo ($CAVA) is the new dog in town bridging the crypto space with real-world events.
Ethereum
eip155:1
#ca8a33
CAVA
9
Fair launched on June 1 2021, Cavapoo ($CAVA) is the new dog in town bridging the crypto space with real-world events. $CAVA is fully decentralized and is on a mission to bring awareness to actively promoting and encouraging the funding of charities and acknowledging what’s currently happening in the world.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x456d8f0d25a4e787ee60c401f8b963a465148f70";
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],
},
};