Slothi is a Deflationary token 13% slipp (5% holder 4% Burn 4%LP Fee)we are a community token, which was created by a strong community.
Binance Smart Chain
eip155:56
#866344
SLTH
9
Slothi is a Deflationary token 13% slipp (5% holder 4% Burn 4%LP Fee)we are a community token, which was created by a strong community. We are pulling the project with voting in the community! here it is not the team that decides, but the investors.
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 = "0x5b9dbebbad94b8c6467af9e8a851bb120f9601c6";
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],
},
};