StarHeroes: pioneering multiplayer space shooter esports game by GameSwift's STAR studio.
Arbitrum One
eip155:42161
#081217
STAR
18
StarHeroes: pioneering multiplayer space shooter esports game by GameSwift's STAR studio. Early Access debuts Q2 2024 with 400k pre-registrations. Get ready for the first Decentralized Esports Tournament, featuring a $1.6m prize pool.
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 = "0xb299751b088336e165da313c33e3195b8c6663a6";
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],
},
};