BIMP is BNB In My Pocket.
Binance Smart Chain
eip155:56
#d54cb7
BIMP
9
BIMP is BNB In My Pocket. Bimp.Finance is the future of NFT merchandise selling for female online streamers. Our vision is to provide a platform where female streamers can sell a different NFT merchandise and gain commissions and royalties from every NFT sold through their channels. We envision that our platform NFT collection will provide a long-term revenue model for the both of our female streamers and Bimp investors.
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 = "0x8855cfba493d8a22f924a5ce1b06efbcea68ffec";
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],
},
};