Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform.
Ethereum
eip155:1
#ec0424
TSLAX
18
Tesla tokenized stock (xStock) (TSLAX) is a cryptocurrency and operates on the Solana platform. Tesla tokenized stock (xStock) has a current supply of 50,998.28909342 with 10,999.28657402 in circulation. The last known price of Tesla tokenized stock (xStock) is 417.05893204 USD and is down -0.76 over the last 24 hours. It is currently trading on 44 active market(s) with $21,478,606.39 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/tesla-xstock.
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 = "0x8ad3c73f833d3f9a523ab01476625f269aeb7cf0";
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],
},
};