Inspired by the rise of Shiba Inu and Floki Inu, Kitty Inu is an ERC-20 Cryptocurrency joining the cryptoverse to teach an old doge some new tricks!
Ethereum
eip155:1
#c4a492
KITTY
9
Inspired by the rise of Shiba Inu and Floki Inu, Kitty Inu is an ERC-20 Cryptocurrency joining the cryptoverse to teach an old doge some new tricks! Kitty’s mission is to build one of the best and biggest crypto communities in the world backed by one of the best teams in Defi. Part Kitty, Part Inu, Kitty Inu will woof and meow its way to the moon.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x044727e50ff30db57fad06ff4f5846eab5ea52a2";
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],
},
};