Meet TAO Cat, Bittensor's most adorable TAO maxi.
Base
eip155:8453
#8f7e77
TAOCAT
18
Meet TAO Cat, Bittensor's most adorable TAO maxi. As Bittensor's first self-improving AI Agent, she's got that pure Bittensor DNA running through her code – natively powered by both Bittensor and Virtuals, and crafted by the Masa team
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 = "0x7a5f5ccd46ebd7ac30615836d988ca3bd57412b3";
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],
},
};