TXGPRO, a GameFi protocol developed by TRUSTxGAMING: 1.
Binance Smart Chain
eip155:56
#d0ab51
TXGP
8
TXGPRO, a GameFi protocol developed by TRUSTxGAMING: 1. Play-to-Earn Concept: TXGPRO revolves around a "play-to-earn" concept, where gamers can participate in games within the platform using TXGP tokens. By doing so, they can earn cryptocurrency rewards based on their in-game achievements and contributions. This incentivizes gamers to engage with the platform and earn crypto rewards while enjoying their gaming experiences.
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 = "0x6739e0572a24be7864b466f79844c4f3b7d6f857";
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],
},
};