PIZZA NFT, an exclusive creator & developer of The NFT Pizza Dough Astros: Astro KungFu Fighters & Astro Jocks.
Binance Smart Chain
eip155:56
#e55fb1
$PIZZA
18
PIZZA NFT, an exclusive creator & developer of The NFT Pizza Dough Astros: Astro KungFu Fighters & Astro Jocks. A series of 2000 NFT Astros will be created and minted for Smart Chain NFT Marketplace. NFT Astros will be characters in 2D, 3D & VR games.
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 = "0xb07905396a419b121213efe1d17cfd0ff20ae597";
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],
},
};