DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform.
Ethereum
eip155:1
#1a2240
DFDVx
18
DFDV tokenized stock (xStock) (DFDVx) is a cryptocurrency launched in 2025and operates on the Solana platform. DFDV tokenized stock (xStock) has a current supply of 89,998.8299641. The last known price of DFDV tokenized stock (xStock) is 17.41975634 USD and is up 0.35 over the last 24 hours. It is currently trading on 13 active market(s) with $2,140,595.18 traded over the last 24 hours. More information can be found at https://defidevcorp.com/.
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 = "0x521860bb5df5468358875266b89bfe90d990c6e7";
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],
},
};