Base
eip155:8453
#f8f80c
ZAP
18
ZAP is a web3 token distribution protocol. ZAP has three core products that allow consumers to discover, earn, and deploy tokens on chain. ZAP Drops is a mission based airdrop platform that users complete on and off-chain missions for different protocols earn a variety of rewards whilst completing these missions.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xf56b3b3972f2f154555a0b62ff5a22b7b2a3c90b";
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],
},
};