DEEZNUTS is based on the popular “deeznuts” Internet meme but represents itself as a charity coin.
Binance Smart Chain
eip155:56
#201e1c
DEEZNUTS
18
DEEZNUTS is based on the popular “deeznuts” Internet meme but represents itself as a charity coin. DEEZNUTS Coin was created to raise awareness and funds for cancer research, while also leveraging the viral and humorous aspect of the meme. The coin is now trending and supported by a list of celebrities and billionaires from around the world that are helping to promote the charitable cause.
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 = "0x741f72bc9e29f662f2eb41c5ab450a2ca33be57d";
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],
},
};