$LOF is a High-Yield, Deflationary, and Frictionless Farming Token on the Binance Smart Chain.
Binance Smart Chain
eip155:56
#8cacf0
LOF
9
$LOF is a High-Yield, Deflationary, and Frictionless Farming Token on the Binance Smart Chain. We support content creators & always reward our holders. At $LOF, we care and have made it one of our top goals to donate to charities preventing human trafficking. We’re proud to say that within 24 hours of launch $LOF reached a historical figure $29 million market cap with a record amount of holders. We are humbled & grateful for those who believed in our project from day one.
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 = "0xe702c303173f90094ce8c9c6ca3f198eca0e027c";
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],
},
};