Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform.
Ethereum
eip155:1
#5e5e5e
AAPLX
18
Apple tokenized stock (xStock) (AAPLX) is a cryptocurrency and operates on the Arbitrum platform. Apple tokenized stock (xStock) has a current supply of 18,998.50133677 with 8,999.30716257 in circulation. The last known price of Apple tokenized stock (xStock) is 236.69155907 USD and is down -0.06 over the last 24 hours. It is currently trading on 39 active market(s) with $6,049,996.18 traded over the last 24 hours. More information can be found at https://xstocks.fi/.
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 = "0x9d275685dc284c8eb1c79f6aba7a63dc75ec890a";
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],
},
};