BabyApeFunClub is designed to create a complex ecosystem in which DeFi, Metaverse & Real World are integrated together.
Binance Smart Chain
eip155:56
#468796
BAFC
9
BabyApeFunClub is designed to create a complex ecosystem in which DeFi, Metaverse & Real World are integrated together. Crypto users will access all DeFi & Metaverse services quickly, cheaply and effectively with only BabyApeFunClub platforms. For this, we are building the BAFC Stake, BAFC Swap, BAFC Marketplace, BAFC Metaverse, BAFC Store.Specifically, the BAFC Store was designed to help poor people around the world and is in great preparation.
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 = "0x035ad59058c557be4532141fbcd60f0998fce413";
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],
},
};