Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform.
Arbitrum One
eip155:42161
#4384f4
GOOGLX
18
Alphabet tokenized stock (xStock) (GOOGLX) is a cryptocurrency and operates on the Solana platform. Alphabet tokenized stock (xStock) has a current supply of 20,999.24547712. The last known price of Alphabet tokenized stock (xStock) is 254.51926743 USD and is up 4.55 over the last 24 hours. It is currently trading on 34 active market(s) with $4,238,360.30 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/alphabet-xstock.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0xe92f673ca36c5e2efd2de7628f815f84807e803f";
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],
},
};