BUNNY DeFi is a deflationary token that allows for passive income generation for investors.
Binance Smart Chain
eip155:56
#8cbcbc
BUN
18
BUNNY DeFi is a deflationary token that allows for passive income generation for investors. Here’s how it works.BUNNY’s decentralized exchange product suite consists of SmartTrade trading and aggregation, Swap , Staking and Liquidity Mining (which include liquidity mining, trading mining, and combiner harvest mining). It is integrated with various wallet applications through which users can interact with the platform.
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 = "0x5c8111c3bcb0cc02acf50bc8676d4aa1bc017607";
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],
},
};