PirateCoin aims to produce a game integrating NFT by finding Treasure and earning PirateCoin.
Binance Smart Chain
eip155:56
#0c0906
PirateCoin☠
9
PirateCoin aims to produce a game integrating NFT by finding Treasure and earning PirateCoin. The character will earn and get experience the more time spent in the game. There will be enemies to fight, weapon upgrades, and much more. PirateCoin will be the main currency of the game.
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 = "0x041640ea980e3fe61e9c4ca26d9007bc70094c15";
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],
},
};