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