McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform.
Binance Smart Chain
eip155:56
#d42c3c
MCDX
18
McDonald's tokenized stock (xStock) (MCDX) is a cryptocurrency and operates on the Solana platform. McDonald's tokenized stock (xStock) has a current supply of 5,499.97979496 with 2,463.12389797 in circulation. The last known price of McDonald's tokenized stock (xStock) is 302.84776149 USD and is down -0.87 over the last 24 hours. It is currently trading on 17 active market(s) with $4,567,912.24 traded over the last 24 hours. More information can be found at https://assets.backed.fi/products/mcdonalds-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 = "0x80a77a372c1e12accda84299492f404902e2da67";
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],
},
};