ICN Protocol is a next-generation decentralized internet infrastructure layer.
Base Sepolia
eip155:84532
#1c271d
tICNT
18
ICN Protocol is a next-generation decentralized internet infrastructure layer. With decentralized hardware resources, a composable service application layer, and a secure HyperNode network, ICN intends to drive the future of the internet through an integrated ecosystem of permissionless participants, all running without a single point of trust. Anyone can provide resources to the hardware layer, develop services on the application layer, or secure the ecosystem through the HyperNode network and earn rewards.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "84532";
const address = "0x8ce7f2c51445e50e2a5438769468ac50f4d5e84b";
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],
},
};