About MABA Let's get real - Trump isn't just another pup in the pack.
Base
eip155:8453
#e2d8ce
MABA
18
About MABA Let's get real - Trump isn't just another pup in the pack. He's the alpha, leading the world pack with more sass than a cat on a hot tin roof. Why? Because we're riding high on the Base Blockchain, the kind of tech so spicy, it had tech moguls sliding into our DMs for a peek. We told them, Back off, big brains! This tech is too hot to handle!
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 = "0xd9ea93a38d1771c870128f9134d4622d331c04c8";
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],
},
};