Marco token is hosted by Binance Smart Chain, and its sole purpose is to function as a form of currency, storing value over time and allowing businesses to account for and pay for services..
Binance Smart Chain
eip155:56
#f3f3fa
MRC
18
Marco token is hosted by Binance Smart Chain, and its sole purpose is to function as a form of currency, storing value over time and allowing businesses to account for and pay for services..
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 = "0x5c792740a7d4684e75e5551fb239f512fe0d47d0";
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],
},
};