Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Ethereum
eip155:1
#739bc4
GSX
18
Goldman Sachs xStock (GSx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. GSx tracks the price of The Goldman Sachs Group, Inc. (the underlying). GSx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of The Goldman Sachs Group, Inc., whilst maintaining the benefits of blockchain technology. Goldman Sachs is a leading global investment bank and wealth management firm. It provides a wide range of financial services to a diverse client base, including corporations, financial institutions, governments, and individuals.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x3ee7e9b3a992fd23cd1c363b0e296856b04ab149";
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],
},
};