Akita is an OG Ethereum memecoin launched in 2021.
Ethereum
eip155:1
#346ce4
AKITA
18
Akita is an OG Ethereum memecoin launched in 2021. At launch, 50% of the token supply was sent to Vitalik Buterin, who later donated those tokens to Gitcoin. In 2026, Akita migrated to a new contract to address technical and structural issues and build a more sustainable foundation. Today, Akita is focused on growing the community, building the Akita mascot IP, and aligning with Gitcoin’s “Fund What Matters” ethos.
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 = "0x7def4573628021500c3207994935a51801fb56be";
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],
},
};