The Lottery Token features an automated and integrated Lottery in the contract itself.
Binance Smart Chain
eip155:56
#77051f
LOT
9
The Lottery Token features an automated and integrated Lottery in the contract itself. The Lotterypool is filled with 2% of the 6% fee per transaction, the other 2% get instantly redistributed among all holders and the other 2% are burned. The frequency of the lottery is based on the traffic and triggers after reaching 0.1% of the current total supply. Holders don't need to buy tickets, holding a minimal amount results in a lifetime participation.
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 = "0x4e7ae924fd9a5d60b56be486b2900efe0c6a9ca7";
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],
},
};