ChainGPT is an advanced AI model designed specifically for Blockchain, Crypto, and the Web3 space.
Ethereum
eip155:1
#0d0d0d
CGPT
18
ChainGPT is an advanced AI model designed specifically for Blockchain, Crypto, and the Web3 space. ChainGPT offers variety of features such as no-code smart contract generator, auditor, fast and reliable source of information, AI trading, and more. ChainGPT is backed by the CGPT utility token.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x25931894a86d47441213199621f1f2994e1c39aa";
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],
},
};