Tap Fantasy is an MMORPG blockchain game, building the biggest Play2Earn NFT game on Solana and BSC.
Binance Smart Chain
eip155:56
#edc1ce
TAP
18
Tap Fantasy is an MMORPG blockchain game, building the biggest Play2Earn NFT game on Solana and BSC. It’s the metaverse version of the famous MMORPG TapTap Fantasy with over 20 million users. Now it has designed more than 200 ACG characters and NFT skins.
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 = "0x35bedbf9291b22218a0da863170dcc9329ef2563";
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],
},
};