Cylum is a protocol built as a Launchpad for Metaverse projects on the Binance Smart Chain, as well as partnerships and funding.
Binance Smart Chain
eip155:56
#f48430
CYM
9
Cylum is a protocol built as a Launchpad for Metaverse projects on the Binance Smart Chain, as well as partnerships and funding. The CYM token is used to power and drive this ecosystem. In addition to our reward system, we have a unique lock-stake algorithm.
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 = "0x15ea6b8481bf1c991ac3dc8e67279d31651a56fe";
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],
},
};