A new meme that combines APE and PEPE to symbolize small investors.
Polygon
eip155:137
#49322c
APEPE
18
A new meme that combines APE and PEPE to symbolize small investors. The APEPE community aims to bring together small investors and become a force to be reckoned with. APEPE's symbol, the community, is worth noting.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0xa3f751662e282e83ec3cbc387d225ca56dd63d3a";
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],
},
};