$HENLO kart by Onchain Gaias is a telegram mini app that combines cute hamsters, onchain ai agents, hamster races, a memecoin, a huge jackpot all players compete for, referral links, and ai passive i…
Base
eip155:8453
#7f91ac
HENLO
18
$HENLO kart by Onchain Gaias is a telegram mini app that combines cute hamsters, onchain ai agents, hamster races, a memecoin, a huge jackpot all players compete for, referral links, and ai passive income. Henlo Kart, a hamster racing minigame, is the first of many games for the Onchain General Intelligence (OGI) Network, a decentralized platform that enables the creation, training, and deployment of open, decentralized AI Agents.
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 = "0x23a96680ccde03bd4bdd9a3e9a0cb56a5d27f7c9";
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],
},
};