$BlimpsRock is a yield and liquidity generating protocol token that works by applying a 10% fee to every transaction and distributing half of that to token holders and then automatically locks the ot…
Binance Smart Chain
eip155:56
#1bbbe6
BLIMPSROCK
9
$BlimpsRock is a yield and liquidity generating protocol token that works by applying a 10% fee to every transaction and distributing half of that to token holders and then automatically locks the other half in Pancake LP. No need to stake your tokens to earn rewards, simply HODL in your wallet and watch the rewards roll in.
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 = "0xdf6d9fc61bd8163b59d6381ec93ae1d3a4d95bb2";
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],
},
};