The Super Champs Universe is a web3 AI, gaming, and animation universe with the world’s first autonomous game-streaming AI Agent, multiple live mobile games, and millions of fans across social media.…
Base
eip155:8453
#6c37a0
CHAMP
18
The Super Champs Universe is a web3 AI, gaming, and animation universe with the world’s first autonomous game-streaming AI Agent, multiple live mobile games, and millions of fans across social media. Each Super Champ in the universe has been selected to attend the prestigious Super Champs Academy to hone their fledgling superpowers and athletic skills in mega-racket sports, battlesports, etc. These Super Champs heroes are featured in a series of mobile games with NFTs, AI Agents on video and social platforms, and original animated videos.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xeb6d78148f001f3aa2f588997c5e102e489ad341";
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],
},
};