Bepe is a dynamic social DeFi platform powered by the BEPE token.
Base
eip155:8453
#213791
BEPE
18
Bepe is a dynamic social DeFi platform powered by the BEPE token. Inside the ecosystem you will find a customizable launchpad for projects, complete with adjustable tax rates, staking options, and token locks alongside a built in AMM ensuring smooth trading, liquidity and a plethora of opportunities for tokens in or out of the ecosystem.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0x10f434b3d1cc13a4a79b062dcc25706f64d10d47";
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],
},
};