EarnX is unheard of the version of NFTs that can retain their value lifelong and will be totally driven by our community.
Binance Smart Chain
eip155:56
#3b1f7c
EarnX
9
EarnX is unheard of the version of NFTs that can retain their value lifelong and will be totally driven by our community. For EARNX, we will bring a completely new category of NFTs which will be a revolutionary in NFT ecosystem. eg., Persian Carpets NFTs which will be couriered to buyers with NFT RFID.
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 = "0x9c28e48ea9170d9a9cb76d338655b8bd4124bc7a";
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],
},
};