The MND token is a vehicle created to capture and distribute the full value of our ecosystem expansion directly to the PancakeBunny Community.
Binance Smart Chain
eip155:56
#040404
MND
18
The MND token is a vehicle created to capture and distribute the full value of our ecosystem expansion directly to the PancakeBunny Community. and the Mound Vault that you can stake MND is designed as a means for the PancakeBunny Community to share in the full value of all of the innovative DeFi projects/products that Team Bunny has to offer, now and in the future.
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 = "0x4c97c901b5147f8c1c7ce3c5cf3eb83b44f244fe";
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],
},
};