The RSC coin is our introduction to the crypto world and the first of many “SMART COINS” to follow with real world applications and utility!
Binance Smart Chain
eip155:56
#3ab0f3
R$C
9
The RSC coin is our introduction to the crypto world and the first of many “SMART COINS” to follow with real world applications and utility! These Smart Coins will target specific sectors of business including Music, Life Insurance, Business Loans, Banking, Entertainment, NFTs, Collectibles, Sports, Car and Home Savings, etc — and with star-power of RSC, will be the first to know about future coins! That means future gains for savvy investors.
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 = "0x55183148d5c3360cbb0e1edb38b30e091aee4d65";
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],
},
};