Binance Smart Chain
eip155:56
#6128dc
SMGM
10
Tired of only going to the moon? Come to Mars instead! SpaceX's aspirational goal has been to land the first humans on Mars by 2024, but don’t wait until then. Let us take you there right now! We are a community-driven project that has implemented some of the best tokenomics around. Our goal is simple: end testicular cancer
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 = "0x74f3a669a8f35010f6f8811c495c0a5f60c5d04d";
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],
},
};