Our goal at zkSync id is to create a decentralized digital identity and access system that leverages the advantages of zk-rollup technology.
zkSync
eip155:324
#040404
ZKID
18
Our goal at zkSync id is to create a decentralized digital identity and access system that leverages the advantages of zk-rollup technology.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "324";
const address = "0x2141d7fe06a1d69c016fc638ba75b6ef92fa1435";
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],
},
};