ICN Protocol is a next-generation decentralized internet infrastructure layer.
Ethereum
eip155:1
#1c271d
ICNT
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 = "1";
const address = "0xe5e0b73380181273abcfd88695f52c4d0c825661";
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],
},
};