export function TokenData({ stats }: { stats: Record | null }) { if (!stats) return

Loading...

; const data = [ { label: "Market Cap", value: `${stats.marketCap.toFixed(2)} AIUS` }, { label: "24h Change", value: `${stats.change24h >= 0 ? "+" : ""}${stats.change24h.toFixed(2)}%` }, { label: "TVL", value: `${stats.tvl.toFixed(2)} AIUS` }, { label: "Holders", value: stats.holders.toLocaleString() }, { label: "24h Volume", value: `${stats.volume.toFixed(2)} AIUS` }, ]; return (
{data.map((item) => (

{item.label}

{item.value}

))}
); }