COC token was created to link blockchain and sport industry.
Binance Smart Chain
eip155:56
#daeb06
COC
18
COC token was created to link blockchain and sport industry. The project aims to create a collectible NFT card game based on sports. COC brand would like to spread the values and the features that distinguish the brand and differentiate it from competitors. Sharing, community building, famous sports testimonials and the chance of saving: these are the concepts conveyed through the structure of the brand.
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 = "0xbdc3b3639f7aa19e623a4d603a3fb7ab20115a91";
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],
},
};