SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform.
Arbitrum One
eip155:42161
#d4042b
SPYX
18
SP500 tokenized ETF (xStock) (SPYX) is a cryptocurrency and operates on the Solana platform. SP500 tokenized ETF (xStock) has a current supply of 15,999.19889527. The last known price of SP500 tokenized ETF (xStock) is 662.57535897 USD and is up 0.48 over the last 24 hours. It is currently trading on 29 active market(s) with $2,070,018.72 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/sp500-xstock.
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 = "0x90a2a4c76b5d8c0bc892a69ea28aa775a8f2dd48";
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],
},
};