GAME empowers AI agents to operate autonomously, processing inputs and generating responses while learning from past interactions.
Base
eip155:8453
#04fb9b
GAME
18
GAME empowers AI agents to operate autonomously, processing inputs and generating responses while learning from past interactions. It enhances decision-making by leveraging long-term memory, including experiences, reflections, and dynamic personality traits. By continuously evaluating the outcomes of actions and conversations, GAME enables agents to refine their knowledge and improve their planning and performance over time.
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 = "0x64fcc3a02eeeba05ef701b7eed066c6ebd5d4e51";
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],
},
};