Akita DAO is a decentralized autonomous organization of the AKITA community which helps guide the future of the ecosystem.
Ethereum
eip155:1
#e3deee
AKITA
18
Akita DAO is a decentralized autonomous organization of the AKITA community which helps guide the future of the ecosystem. The Akita DAO exists to produce products and useful applications that benefit holders of the AKITA tokens. AKITA token holders were the original group to come together and make AKITA a true community owned token pushing it to be more than just a meme.
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 = "0x3301ee63fb29f863f2333bd4466acb46cd8323e6";
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],
},
};