WAGMI Defense is being developed as the Clash Royale of crypto with a futuristic twist.
Ethereum
eip155:1
#e6cad3
WAGMIGAMES
18
WAGMI Defense is being developed as the Clash Royale of crypto with a futuristic twist. This epic aliens versus humans game is being built on unity as a browser based, mobile responsive game with plans to launch on IOS and Apple Store when it becomes crypto accepted.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x3b604747ad1720c01ded0455728b62c0d2f100f0";
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],
},
};