BitDAO infuses capital agnostically across industries, chains, and products.
Ethereum
eip155:1
#abfb04
BIT
18
BitDAO infuses capital agnostically across industries, chains, and products. Its treasury is supported by contributions from Bybit and the virtuous cycle of value created by its AEs and partner labs. When you hold $BIT, you’re not only getting a stake in the massive growth potential of BitDAO, but the AEs it’s helping accelerate. Your $BIT gives you voting power to help direct how treasury funds are allocated and the terms of the funding.
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 = "0x1a4b46696b2bb4794eb3d4c26f1c55f9170fa4c5";
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],
},
};