GOOGLB is a tokenized bStocks that gives you economic exposure to Alphabet Tokenized bStocks, and the right to convert to the underlying security on the Binance.com platform subject to applicable law…
Binance Smart Chain
eip155:56
#f5b22e
GOOGLB
18
GOOGLB is a tokenized bStocks that gives you economic exposure to Alphabet Tokenized bStocks, 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 = "0x3f53de71c126bdabae20f9cd64848d317f6c3238";
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],
},
};