Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Ethereum
eip155:1
#1433cc
VX
18
Visa xStock (Vx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. Vx tracks the price of Visa Inc. Class A (the underlying). Vx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Visa Inc. Class A, whilst maintaining the benefits of blockchain technology. Visa Inc. is a global digital payments technology company that facilitates transactions between consumers, merchants, and financial institutions in over 200 countries.
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 = "0x2363fd1235c1b6d3a5088ddf8df3a0b3a30c5293";
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],
},
};