Kiba Inu is restoring integrity to meme coins by building the safest Dex and Launchpad in the space.
Binance Smart Chain
eip155:56
#1a2b2f
KIBA
18
Kiba Inu is restoring integrity to meme coins by building the safest Dex and Launchpad in the space. KibaSwap already includes our swap, KibaFomo, Honeypot Checker, KibaTools, and KibaReports. We are a meme coin to capitalize on the fun and organic growth that are common in this space. We are a utility that solves the problems newcomers and OG’s face frequently. We are a community that is regarded as the best and others try to emulate. Best of all, we are just getting started.
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 = "0xc3afde95b6eb9ba8553cdaea6645d45fb3a7faf5";
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],
},
};