Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Ethereum
eip155:1
#0494d4
PEPX
18
Pepsico xStock (PEPx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. PEPx tracks the price of PepsiCo, Inc. (the underlying). PEPx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of PepsiCo, Inc., whilst maintaining the benefits of blockchain technology. PepsiCo is a multinational food and beverage corporation. PepsiCo offers a diverse portfolio of over 500 brands, including popular items like Pepsi, Lay's, Doritos, Gatorade, and Quaker Oats.
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 = "0x36c424a6ec0e264b1616102ad63ed2ad7857413e";
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],
},
};