Zombie World Z is upgraded and developed based on Zombie Idle Defense – a successful and established game in the market.
Binance Smart Chain
eip155:56
#2f1f4e
ZwZ
18
Zombie World Z is upgraded and developed based on Zombie Idle Defense – a successful and established game in the market. Currently, the publisher has transformed the upgrade by applying blockchain technology and metaverse to game mining in a new aspect with a game economy tied to Tokens and blockchain on the Binance Smartchain platform.
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 = "0x5445451c07e20ba1ca887b6c74d66d358f46d083";
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],
},
};