GAIA is the native token of the Gaia Network, powering a decentralized AI ecosystem built on openness, sovereignty, and user ownership.
Ethereum
eip155:1
#151515
GAIA
18
GAIA is the native token of the Gaia Network, powering a decentralized AI ecosystem built on openness, sovereignty, and user ownership. It enables governance, staking, and payments for AI inference, agent usage, and domain services. GAIA aligns incentives across node operators, developers, and the community, securing the network and driving participation. Token holders can vote on proposals, delegate to validators, and earn rewards for contributing. With a fixed supply and transparent distribution, GAIA fuels a permissionless AI economy and puts control back in the hands of users.
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 = "0x2ee7097bfdd98fce2ac08a1896038a7cd9aaed81";
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],
},
};