Baby-Shark.finance project is to build an entertainment platform in NFT music field.
Binance Smart Chain
eip155:56
#6da4c4
BBS
9
Baby-Shark.finance project is to build an entertainment platform in NFT music field. There are many benefits for BBS holders such as: get profit sharing from BBS Entertainment Platform, get share of fee for every NFT sold on BBS NFT Marketplace, earn 2% passive income for each transaction. We also use 80% profit of AMM DEX to buy back BBS token, which leads to continuous increase in BBS price.
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 = "0x46551803322db7be94074e9773377f8b037e9d0e";
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],
},
};