LandRocker offers an infinite universe for discovery, space exploration, and combat in a free-to-play, multiplayer game.
Polygon
eip155:137
#040404
LRT
18
LandRocker offers an infinite universe for discovery, space exploration, and combat in a free-to-play, multiplayer game. Players embark on missions across over 79 quintillion unique planets, each with distinct environments, ecosystems, and wildlife. They engage in battles against alien forces and gather rewards such as crypto tokens and crafting materials. Audited by Certik: https://skynet.certik.com/projects/landrocker
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0xfb7f8a2c0526d01bfb00192781b7a7761841b16c";
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],
},
};