Yummy is a BEP20 token issued on the Binance Smart Chain on a mission to end world hunger.
Binance Smart Chain
eip155:56
#070505
YUMMY
9
Yummy is a BEP20 token issued on the Binance Smart Chain on a mission to end world hunger. Each time Yummy is traded, a charity is receiving donations. Yummy sets out to transform the crypto industry by giving back while creating a coin that benefits charity and its holders. We are placing an emphases on complete transparency, sustainable, strategic growth decisions, and innovative marketing campaigns that will ensure the world falls in love with Yummy as much as the rest of us.
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 = "0x05f2df7b3d612a23fe12162a6c996447dce728a5";
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],
},
};