IceCream AI is a DeFAI protocol developed by KOL4U that introduces AI-governed Glaze Pools (GPs) as an on-chain instrument to incentivize and realize social capital.
Binance Smart Chain
eip155:56
#cda8a7
ICECREAM
18
IceCream AI is a DeFAI protocol developed by KOL4U that introduces AI-governed Glaze Pools (GPs) as an on-chain instrument to incentivize and realize social capital. Users can claim on-chain assets from GPs based on IceCream AI's analysis of their activity on X.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xd438b82543fb109f34575c825edaeefc98f1f2b4";
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],
},
};