IronyMan token is the original meme token created in response to Elon Musk's tweet where he had the idea to do a skit on his SNL appearance, where he will play as Irony man and defeat people with Iro…
Binance Smart Chain
eip155:56
#052950
IRONY
9
IronyMan token is the original meme token created in response to Elon Musk's tweet where he had the idea to do a skit on his SNL appearance, where he will play as Irony man and defeat people with Irony. The token will be used as a financial means of exchange primarily. The token will also be a strong charitable entity with intent to donate to children with rare forms of Anemia.
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 = "0x2c40a80565b595c03cd94217c077c47e3f41937e";
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],
},
};