Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform.
Ethereum
eip155:1
#7abef0
CRCLX
18
Circle tokenized stock (xStock) (CRCLX) is a cryptocurrency and operates on the Solana platform. Circle tokenized stock (xStock) has a current supply of 49,998.60984587. The last known price of Circle tokenized stock (xStock) is 134.16292538 USD and is up 4.96 over the last 24 hours. It is currently trading on 44 active market(s) with $8,141,888.27 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/circle-xstock.
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 = "0xfebded1b0986a8ee107f5ab1a1c5a813491deceb";
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],
},
};