MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform.
Arbitrum One
eip155:42161
#dc3443
MSTRX
18
MicroStrategy tokenized stock (xStock) (MSTRX) is a cryptocurrency and operates on the Solana platform. MicroStrategy tokenized stock (xStock) has a current supply of 19,499.52630505. The last known price of MicroStrategy tokenized stock (xStock) is 329.14757255 USD and is down -0.35 over the last 24 hours. It is currently trading on 28 active market(s) with $3,268,417.42 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/microstrategy-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 = "0xae2f842ef90c0d5213259ab82639d5bbf649b08e";
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],
},
};