Base
eip155:8453
#ce1cd9
MCADE
18
Metacade is the home of gaming on Base. Whether you are a gamer, a builder, or an investor, Metacade has a space just for you. Metacade launched in late 2022, right in the middle of a bear market. Instead of backing down, we used the challenge as fuel to build something remarkabe a city-like ecosystem that’s all about community and innovation.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xc48823ec67720a04a9dfd8c7d109b2c3d6622094";
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],
},
};