Kava is a Layer-1 blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.
Ethereum
eip155:1
#fb242c
KAVA
6
Kava is a Layer-1 blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum. Kava was built from the ground up to optimize its resources for protocol growth, strengthened by its Cosmos EVM technology that enables maximum scalability, speed, security, and developer support.
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 = "0x0c356b7fd36a5357e5a017ef11887ba100c9ab76";
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],
},
};