Pixels (PIXEL) is a social casual web3 game powered by the Ronin Network, It involves a mesmerizing open-world game that revolves around farming, exploration, and creation.
Ethereum
eip155:1
#edf99a
PIXEL
18
Pixels (PIXEL) is a social casual web3 game powered by the Ronin Network, It involves a mesmerizing open-world game that revolves around farming, exploration, and creation.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x3429d03c6f7521aec737a0bbf2e5ddcef2c3ae31";
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],
},
};