@loafmarkets/ui 0.1.400 → 0.1.402

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -10329,7 +10329,7 @@ function PropertyOverview({
10329
10329
  isLoading = false,
10330
10330
  ticker,
10331
10331
  contractAddress,
10332
- chain = "Base (Ethereum L2)",
10332
+ chain = "Arbitrum (Ethereum L2)",
10333
10333
  volume24h,
10334
10334
  priceHistory: priceHistoryProp,
10335
10335
  beta = false,
@@ -10394,7 +10394,9 @@ function PropertyOverview({
10394
10394
  ];
10395
10395
  const growthPct = overviewData?.growth5Yr;
10396
10396
  const propertyStats = [
10397
- { label: "Property Value", value: isLoading && tokenMarketCap == null ? loadingSkeleton : tokenMarketCap ? fmtDollar(tokenMarketCap) : "\u2014" },
10397
+ // Property Value = the API offeringValuation (OverviewResponse.offeringValuation), NOT
10398
+ // midPrice×tokensIssued market cap (fixed 2026-07-22). null → '—', never a fabricated cap.
10399
+ { label: "Property Value", value: isLoading && overviewData?.offeringValuation == null ? loadingSkeleton : overviewData?.offeringValuation ? fmtDollar(overviewData.offeringValuation) : "\u2014" },
10398
10400
  ...beta ? [] : [{ label: "Offers", value: "3" }],
10399
10401
  { label: "Growth (5yr)", value: growthPct != null ? `${growthPct > 0 ? "+" : ""}${growthPct}%` : "\u2014" },
10400
10402
  { label: "Last Dividend", value: overviewData?.lastDividend != null ? `$${overviewData.lastDividend.toFixed(2)}` : "\u2014" },