Pocket Network is a decentralized blockchain data platform - a protocol that is built to connect to any blockchain and service the data demands of Web3 dApps.
Base
eip155:8453
#040404
POKT
6
Pocket Network is a decentralized blockchain data platform - a protocol that is built to connect to any blockchain and service the data demands of Web3 dApps. Pocket Network uses cost-efficient economics to coordinate and distribute data at scale, using the POKT token to facilitate the protocol's service.
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 = "0x764a726d9ced0433a8d7643335919deb03a9a935";
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],
},
};