UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform.
Arbitrum One
eip155:42161
#1d4583
UNHX
18
UnitedHealth tokenized stock (xStock) (UNHX) is a cryptocurrency and operates on the Solana platform. UnitedHealth tokenized stock (xStock) has a current supply of 2,000 with 1,000 in circulation. The last known price of UnitedHealth tokenized stock (xStock) is 349.28004226 USD and is down -1.37 over the last 24 hours. It is currently trading on 3 active market(s) with $570,164.67 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/unitedhealth-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 = "0x167a6375da1efc4a5be0f470e73ecefd66245048";
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],
},
};