Arena Two is the world’s first Web3 live sports ecosystem, where real-world tournaments meet crypto.
Binance Smart Chain
eip155:56
#f3fb3c
ATWO
18
Arena Two is the world’s first Web3 live sports ecosystem, where real-world tournaments meet crypto. Fans don’t just watch - they vote on real match decisions, back athlete-led teams, and earn rewards through memberships, NFTs, and the $ATWO token.
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 = "0xedbebe204ef070b6880e07a28b55edc7748c24ba";
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],
},
};