Binance Smart Chain
eip155:56
#89bbd5
LOGE
9
LunaDoge is the first ethical mememoin. LunaDoge is 100% transparent. LunaDoge is community-driven and used a fair launch to distribute tokens. All team tokens and LP tokens have been locked. Holders earn passive rewards through static reflection, as they watch their balance of $LOGE grow exponentially
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 = "0xb99172949554e6c10c28c880ec0306d2a9d5c753";
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],
},
};