Lucky Block envisions a worldwide lottery with players using blockchain protocols, operating on the binance smart chain.
Binance Smart Chain
eip155:56
#6b4f18
LBlock
9
Lucky Block envisions a worldwide lottery with players using blockchain protocols, operating on the binance smart chain. The LBlock token is listed on Pancakeswap (DEX), A leading decentralised exchange (DEX) that allows users to buy and sell. We have more than 42K token holders.
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 = "0x2cd96e8c3ff6b5e01169f6e3b61d28204e7810bb";
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],
},
};