Apu, also known as Peepo or Helper, is a pepe-variant that is used to represent a much younger, kinder and more naive anthropomorphic frog.
Unichain
eip155:130
#5f873f
APU
18
Apu, also known as Peepo or Helper, is a pepe-variant that is used to represent a much younger, kinder and more naive anthropomorphic frog.
Fed up with low-effort memecoins, more often than not led by deceptive developers, Apu decided to create his own fairly launched, fully transparent coin: $APU – the one and only coin for all frens.
Having already conquered the internet and the hearts of millions of people, Apu is now on his way to conquer the cryptosphere. If you consider yourself a fren, feel free to join us on this amazing ride to the only place where a character like Apu belongs to: the moon.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "130";
const address = "0xcdfce5eb357e8976a80be84e94a03ba963b9e379";
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],
},
};