Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Arbitrum One
eip155:42161
#04387c
DHRX
18
Danaher xStock (DHRx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. DHRx tracks the price of Danaher Corporation (the underlying). DHRx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Danaher Corporation, whilst maintaining the benefits of blockchain technology. Danaher Corporation is a global science and technology innovator operating in biotechnology, life sciences, and diagnostics. It focuses on accelerating the power of science and technology to improve human health.
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 = "0xdba228936f4079daf9aa906fd48a87f2300405f4";
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],
},
};