CURATE is a marketplace app centred around the theme of content discovery on clothing/fashion, gaming/tech, crypto assets and health/beauty and more.
Ethereum
eip155:1
#f8f8f8
XCUR
8
CURATE is a marketplace app centred around the theme of content discovery on clothing/fashion, gaming/tech, crypto assets and health/beauty and more. Curate utilises blockchain technology as a payment infrastructure and means of rewarding engagement i.e buying, selling or based on our rewards engagement algorithm. XCUR is the official token for the CURATE marketplace app and DeFi platform.
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 = "0xe1c7e30c42c24582888c758984f6e382096786bd";
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],
},
};