Compact is an astonishing token that combines the power of the most successful and popular BSC tokens into one.
Binance Smart Chain
eip155:56
#cf3cc7
CPAC
9
Compact is an astonishing token that combines the power of the most successful and popular BSC tokens into one. It features beneficial aspects like distribution, return to liquidity, airdrops, events, giveaways, lottery, charity and manual burns. This token is something special, something that the BSC world has not seen before.
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 = "0x43d096cdd8a71d9421af406e8eeefed5861e74e1";
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],
},
};