Baby Floki Coin is a new crypto coin brought to life by fans & members of the Shiba Inu/Doge community.
Binance Smart Chain
eip155:56
#0dcafa
BabyFlokiCoin
9
Baby Floki Coin is a new crypto coin brought to life by fans & members of the Shiba Inu/Doge community. BabyFlokiCoin is Elon Musk’s very own shiba inu and he’s on a mission to become the first puppy to go to the moon! He’s built to reward you by sending 5% of every transaction made to your wallet.
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 = "0x808fac147a9c02723d0be300ac4753eaf93c0e1f";
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],
},
};