Crusaders of Crypto is a classic-style Roguelike game paired with the Binance Smart Chain!
Binance Smart Chain
eip155:56
#3f1927
CRUSADER
9
Crusaders of Crypto is a classic-style Roguelike game paired with the Binance Smart Chain! Players are able to repeatedly enter randomly generated dungeons, battle monsters, and fight difficult and scripted bosses, all named after Crypto-Related tragedies (Like FlashLoanius!). Holders of CRUSADER will be able to enhance this experience by being able to do the same during competition events, which can reward BNB and in-game NFTs!
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 = "0x6289812163af9421e566b3d74774074fac2a0441";
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],
},
};