Heroes TD is a Free to Play or Play to Earn 3D GameFi built with Heroes Metaverse.
Binance Smart Chain
eip155:56
#c944cb
HTD
18
Heroes TD is a Free to Play or Play to Earn 3D GameFi built with Heroes Metaverse. You can play with each other and trade items on the NFT market! Join Heroes TD today and get your life-time investment!
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 = "0x5e2689412fae5c29bd575fbe1d5c1cd1e0622a8f";
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],
},
};