Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform.
Arbitrum One
eip155:42161
#0453fb
COINX
18
Coinbase tokenized stock (xStock) (COINX) is a cryptocurrency and operates on the Solana platform. Coinbase tokenized stock (xStock) has a current supply of 11,999.99916158 with 6,000 in circulation. The last known price of Coinbase tokenized stock (xStock) is 327.47561557 USD and is up 1.69 over the last 24 hours. It is currently trading on 28 active market(s) with $5,223,607.28 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/coinbase-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 = "0x364f210f430ec2448fc68a49203040f6124096f0";
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],
},
};