Bibi is the official mascot of Binance and the Binance ecosystem.
Binance Smart Chain
eip155:56
#fad74b
BIBI
2
Bibi is the official mascot of Binance and the Binance ecosystem. It is a cute, yellow, cube-shaped character with a distinctive appearance that makes it easily recognizable. Bibi is often depicted in a playful and approachable manner, such as sitting at a desk with a laptop, symbolizing Binance's focus on technology and innovation. As the friendly face of Binance, Bibi helps to engage users and make the world of cryptocurrency more accessible and enjoyable.
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 = "0x27bb50c0927891cd21c8db530490373d295fcbf5";
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],
},
};