Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform.
Binance Smart Chain
eip155:56
#fb0404
GMEX
18
Gamestop tokenized stock (xStock) (GMEX) is a cryptocurrency and operates on the Solana platform. Gamestop tokenized stock (xStock) has a current supply of 23,600 with 6,000 in circulation. The last known price of Gamestop tokenized stock (xStock) is 27.48685055 USD and is up 0.00 over the last 24 hours. More information can be found at https://assets.backed.fi/products/gamestop-xstock.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xe5f6d3b2405abdfe6f660e63202b25d23763160d";
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],
},
};