SkyBorn created and continues to grow a cryptocurrency community comprised of members to trade and create shareable community content.
Binance Smart Chain
eip155:56
#f8c385
SKYBORN
18
SkyBorn created and continues to grow a cryptocurrency community comprised of members to trade and create shareable community content. The SkyBorn project plans to incorporate NFTs for the upcoming release of Binance's release of NFT Marketplace on June 24th, 2021. Additionally, SkyBorn plans to design a mobile application (game) where all microtransactions will be used towards marketing of the token.
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 = "0xf78bbc835b52d7f0e9538c3566997ba2bf050b85";
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],
},
};