At Metacade our vision is to become the premier gaming platform that empowers developers and players, providing unparalleled opportunities for growth and collaboration.
Ethereum
eip155:1
#ce1cd9
MCADE
18
At Metacade our vision is to become the premier gaming platform that empowers developers and players, providing unparalleled opportunities for growth and collaboration. Through creativity and innovation we aim to create a fun first community that offers a rewarding and enjoyable experience, while delivering a revenue driven platform that gives value to $MCADE token holders.
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 = "0xed328e9c1179a30ddc1e7595e036aed8760c22af";
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],
},
};