Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Binance Smart Chain
eip155:56
#ec4333
TMOX
18
Thermo Fisher xStock (TMOx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. TMOx tracks the price of Thermo Fisher Scientific Inc. (the underlying). TMOx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Thermo Fisher Scientific Inc., whilst maintaining the benefits of blockchain technology. Thermo Fisher is a global leader in serving science, with a mission to enable customers to make the world healthier, cleaner, and safer.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xaf072f109a2c173d822a4fe9af311a1b18f83d19";
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],
},
};