CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Ethereum
eip155:1
#ec3b24
CRWDX
18
CrowdStrike xStock (CRWDx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. CRWDx tracks the price of CrowdStrike Holdings, Inc. (the underlying). CRWDx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of CrowdStrike Holdings, Inc., whilst maintaining the benefits of blockchain technology. CrowdStrike is a cybersecurity company specializing in cloud-delivered security solutions, particularly for endpoint and cloud workload protection.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x214151022c2a5e380ab80cdac31f23ae554a7345";
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],
},
};