RZCoin is more than just a cryptocurrency, it is a gateway to transform businesses, companies and brands.
Binance Smart Chain
eip155:56
#d2b979
RZ
18
RZCoin is more than just a cryptocurrency, it is a gateway to transform businesses, companies and brands. Supported by the advanced RZ blockchain technology, RZCoin specializes in asset tokenization in various industries and enables secure, transparent and efficient transactions. With RZCoin all businesses will find new opportunities for growth and innovation. The future is marked!
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 = "0x6bc5abcc56874d7facb90c2c3812cc19aaf9b204";
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],
},
};