Introducing Xenon Play (XPLAY) Xenon Play functions as the official Xenon Reward that can be generated from the Xenon Machine after activating the reward mechanism by inserting Xenon Liquidity Tokens…
Binance Smart Chain
eip155:56
#d4ccf7
XPLAY
18
Introducing Xenon Play (XPLAY) Xenon Play functions as the official Xenon Reward that can be generated from the Xenon Machine after activating the reward mechanism by inserting Xenon Liquidity Tokens or Xenon Pay Tokens. You can also use Xenon Play in the upcoming Xenon Pay Gaming Series such as Xenon Kart: Crypto Edition or Xenon Play: Minigames. Both games will have a Play To Earn game mode. The total currency supply of Xenon Play exists out of 500,000,000 XPLAY.
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 = "0xb7feeab5ea787e83a40f185237c717597363e0d6";
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],
},
};