International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Arbitrum One
eip155:42161
#0c63fb
IBMX
18
International Business Machines xStock (IBMx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. IBMx tracks the price of International Business Machines Corporation (the underlying). IBMx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of International Business Machines Corporation, whilst maintaining the benefits of blockchain technology. International Business Machines Corporation is an American multinational technology corporation headquartered in Armonk, New York.
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 = "0xd9913208647671fe0f48f7f260076b2c6f310aac";
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],
},
};