Binance Smart Chain
eip155:56
#9ad949
LIMON
9
LIMON.GROUP system generates NFT Tokens based on Binance Smart Chain. LIMON NFT Tokens are interconnected to digital products and commercial physical products (EAN - European Article Number) distribute this between B2B or B2P. Our upcoming DEX exchange (P2P) owns an automatic market maker (AMM) for exchanging BEP-20 tokens. Liquidity pools and locks, farming and staking functionalities will be included.
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 = "0x712c0a4659a7c31a81fd5a47a2d83c63a07d7d06";
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],
},
};