@loafmarkets/ui 0.1.161 → 0.1.163
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8541,7 +8541,7 @@ function PropertyOverview({
|
|
|
8541
8541
|
{ label: "Chain", value: chainValue },
|
|
8542
8542
|
{ label: "On-Chain Address", value: contractAddress ? truncateAddress(contractAddress) : "\u2014", mono: true, link: contractAddress ? `https://basescan.org/address/${contractAddress}` : void 0 },
|
|
8543
8543
|
{ label: "Token Ticker", value: ticker ?? "\u2014" },
|
|
8544
|
-
{ label: "Total Tokens", value: isLoading && resolvedTokensIssued == null ? loadingSkeleton : resolvedTokensIssued?.toLocaleString() ?? "\u2014" },
|
|
8544
|
+
{ label: "Total Circulating Tokens", value: isLoading && resolvedTokensIssued == null ? loadingSkeleton : resolvedTokensIssued?.toLocaleString() ?? "\u2014" },
|
|
8545
8545
|
{ label: "Percentage Tokenized", value: percentageTokenized != null ? `${percentageTokenized}%` : "\u2014" },
|
|
8546
8546
|
{ label: "Property Type", value: resolvedPropertyType ?? "\u2014" },
|
|
8547
8547
|
{ label: "Location", value: location || "\u2014" }
|
|
@@ -8564,8 +8564,8 @@ function PropertyOverview({
|
|
|
8564
8564
|
const monthlyDivPerShare = annualDividend && resolvedTokensIssued ? annualDividend / 12 / resolvedTokensIssued : null;
|
|
8565
8565
|
const propertyStats = [
|
|
8566
8566
|
{ label: "Last Valuation", value: isLoading && resolvedValuation == null ? loadingSkeleton : resolvedValuation ? resolvedValuation >= 1e6 ? `$${(resolvedValuation / 1e6).toFixed(2)}M` : `$${resolvedValuation.toLocaleString()}` : "\u2014" },
|
|
8567
|
-
{ label: "Number of Offers", value: "
|
|
8568
|
-
{ label: "Growth (Past 5 Years)", value: "
|
|
8567
|
+
{ label: "Number of Offers", value: "3" },
|
|
8568
|
+
{ label: "Growth (Past 5 Years)", value: "+90%" },
|
|
8569
8569
|
{ label: "Last Dividend", value: isLoading && monthlyDivPerShare == null ? loadingSkeleton : monthlyDivPerShare != null ? `${(monthlyDivPerShare * 100).toFixed(1)} cents` : "\u2014" },
|
|
8570
8570
|
{ label: "Upcoming Dividend", value: (() => {
|
|
8571
8571
|
const now = /* @__PURE__ */ new Date();
|