Ethereum
eip155:1
#e31c3c
yTSLA
18
$yTSLA is an experimental parody token. This project is not affiliated with Tesla Inc, Elon Musk or $MEME. yTSLA is a novelty and was given away through a free airdrop and farm yield. The distribution of yTSLA was conducted in a decentralized manner. yTSLA’s inherit value is $0.00. If the value is higher than $0.00 on the open market then please note that the price can quickly go back down to $0.00.
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 = "0x5322a3556f979ce2180b30e689a9436fddcb1021";
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],
},
};