$HODL: Claim 5% BNB rewards every 7 days.
Binance Smart Chain
eip155:56
#bdd8fc
HODL
18
$HODL: Claim 5% BNB rewards every 7 days. ATH $230M, Doxxed team, KYC verified, LP locked 250+ years, registered company, over 20,000 BNB paid so far! Use 6% slippage to buy and join the community earning as they hold!
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 = "0x32b407ee915432be6d3f168bc1eff2a6f8b2034c";
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],
},
};