BOGE is a homage to the original Dogecoin but built on Binance Smart Chain with added benefits and powers the BSCgems.com launch pad voting application for new BSC projects.
Binance Smart Chain
eip155:56
#fac562
BOGE
9
BOGE is a homage to the original Dogecoin but built on Binance Smart Chain with added benefits and powers the BSCgems.com launch pad voting application for new BSC projects. The coin is deflationary, autostaking, and secure. The original liquidity token has been burned and the contract fully audited. Earn more BOGE by simply holding tokens in your wallet.
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 = "0x248c45af3b2f73bc40fa159f2a90ce9cad7a77ba";
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],
},
};