Luna-Pad is peer to peer innovative Launchpad to launch new projects in TerraLuna ecosystem & Binance smart chain Luna-Pad comes up with the most transformative technologies since the Terra ecosystem…
Binance Smart Chain
eip155:56
#e7e7e8
LunaPad
18
Luna-Pad is peer to peer innovative Launchpad to launch new projects in TerraLuna ecosystem & Binance smart chain Luna-Pad comes up with the most transformative technologies since the Terra ecosystem adoption is increasing massively. Luna-Pad stands firmly in support to give exposure to the upcoming projects willing to join Terra and BSC ecosystem. Luna-Pad gives liberty to it's investors to participate in token sale conducted by Luna-Pad on its Launchpad.
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 = "0xd1fdf57241df3c36dad469060cac9f1ea2ee7585";
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],
},
};