Presale.World aims to make searching for presales easy by allowing users to search, sort and filter presales from some of the biggest launchpads in crypto.
Binance Smart Chain
eip155:56
#2567dc
PRESALE
18
Presale.World aims to make searching for presales easy by allowing users to search, sort and filter presales from some of the biggest launchpads in crypto. At present, this includes PinkSale, DxSale, Unicrypt, GemPad, CookieSale, Novation, and of course PresaleWorld. Not only is it for investors, project owners can generate a token, lock tokens or use our launchpad with unique features such as the pool protection pot where investors are able to claim back a percentage of their initial investment in the event of a scam.
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 = "0x5c197a2d2c9081d30715c80bd1b57c996a14cda0";
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],
},
};