ZFM COIN is a Binance Smart Chain based Token, with burn function, high security, low fees, fast transaction and eco friendly.
Binance Smart Chain
eip155:56
#93c0f5
ZFM
18
ZFM COIN is a Binance Smart Chain based Token, with burn function, high security, low fees, fast transaction and eco friendly. ZFM COIN Cross-chain Asset Locked by Smart Contract. Data Security Safeguarded by Binance Smart Chain. ZFM COIN Token has a burn function, which means that over time, the number of tokens will decrease.
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 = "0xce6b8b2787c657f1b98b7a66b5b63178863fd719";
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],
},
};