Kodi provides its users with the first ever crypto based Entertainment Network.
Binance Smart Chain
eip155:56
#8137c1
KODI
18
Kodi provides its users with the first ever crypto based Entertainment Network. Parallel to this, Kodi is operating a one stop shop Advertisement/Marketing Agency known as ‘PITCH’, which will function as a subsidiary company. Both entities will encompass a use case that will directly benefit $KODI holders. This whitepaper provides a detailed description of the use case, tokenomics, team, the future plans of PITCH and its utility token ($KODI).
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 = "0x7f4f3bc4a5634454398580b9112b7e493e2129fa";
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],
},
};