Nobility is a BSC token that will revolutionize the esports landscape by organizing and providing tournaments with large prize pools, helping content creators earn more from playing the games they lo…
Binance Smart Chain
eip155:56
#1b0a2d
NBL
18
Nobility is a BSC token that will revolutionize the esports landscape by organizing and providing tournaments with large prize pools, helping content creators earn more from playing the games they love, and more use cases that will fill glaring holes within the community.
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 = "0xa67a13c9283da5aabb199da54a9cb4cd8b9b16ba";
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],
},
};