Binance Smart Chain
eip155:56
#5173b9
DMOON
9
Diamoons $DMOON is simply the finest DeFi community run token. Its financial innovation at its best. The project taxes 10% of every transaction: 5% auto grows the liquidity pool, 4% is earned by all holders as passive income, and 1% is forwarded to the Community Treasury Fund, which is used to serve the community and managed by the community.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x1a04364e724a2b9c5a4ff42d777420734e605383";
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],
},
};