Wrapped POKT (wPOKT) is a tokenized version of Pocket (POKT).
Base
eip155:8453
#000000
wPOKT
6
Wrapped POKT (wPOKT) is a tokenized version of Pocket (POKT). wPOKT is backed by POKT at a 1:1 ratio via a network of validators, allowing users to transfer liquidity between the POKT and the ETH networks in a decentralized and autonomous manner. Holders of wPOKT can bridge it over to the Pocket Network blockchain to stake as a node runner, validator or directly as an application/gateway to access the relay throughput that Pocket Network provides.
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 = "0x3bfc2bb3b3c187ddc79e38d4a17c830e2a380b70";
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],
},
};