The W3M token will be the native digital currency of the Web3Met metaverse.
Binance Smart Chain
eip155:56
#31196e
W3M
18
The W3M token will be the native digital currency of the Web3Met metaverse. All transactions ranging from buying digital land, trading NFT items, to booking event space will be using the W3M token. W3M will fuel the activities within this digital city.
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 = "0x7208a2671a2f96950d44c6daaf24719ce44dea78";
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],
},
};