NVDAB is a tokenized bStocks that gives you economic exposure to NVIDIA, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws.
Binance Smart Chain
eip155:56
#63960c
NVDAB
18
NVDAB is a tokenized bStocks that gives you economic exposure to NVIDIA, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws. Each token is fully backed by the corresponding underlying equity maintained by the Issuer at a US-regulated broker-dealer. You get the price movements, dividends, and the right to convert the token at 1:1 to the underlying share — tradeable 24/7.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x02fca66c1d1afb4e2a7884261eb00f63598a7436";
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],
},
};