Game7 is a permissionless, modular Web3 gaming ecosystem designed to solve the most critical challenges for players and developers: infrastructure, distribution, and sustained player engagement.
Arbitrum One
eip155:42161
#fc2c2c
G7
18
Game7 is a permissionless, modular Web3 gaming ecosystem designed to solve the most critical challenges for players and developers: infrastructure, distribution, and sustained player engagement.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0xf18e4466f26b4ca55bbab890b314a54976e45b17";
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],
},
};