SNDKB is a tokenized bStocks that gives you economic exposure to SanDisk, and the right to convert to the underlying security on the Binance.com platform subject to applicable laws.
Binance Smart Chain
eip155:56
#fbb647
SNDKB
18
SNDKB is a tokenized bStocks that gives you economic exposure to SanDisk, 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 = "0x3ee4df61bd4f867e349beae8bfe07bc31b4850fb";
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],
},
};