Binance Smart Chain
eip155:56
#fae20a
HERPES
9
Trends come and go. $HERPES is forever. Herpes' goal is to spread awareness about STIs and unite the crypto community in a fun and viral way. Herpes is a BEP20 token hosted on the BSC. Its tokenomics feature a 10% transaction tax, of which 8% is redistributed to holders and 2% is automatically added to locked liquidity. The Herpes team strives for transparency and is determined to promote organizations that engage in STI education and treatment.
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 = "0x1f14e0f13471fea5990cf697945ed676885f42c3";
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],
},
};