@loafmarkets/ui 0.1.160 → 0.1.162
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8539,9 +8539,9 @@ function PropertyOverview({
|
|
|
8539
8539
|
] });
|
|
8540
8540
|
const tokenDetailsItems = [
|
|
8541
8541
|
{ label: "Chain", value: chainValue },
|
|
8542
|
-
{ label: "
|
|
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" }
|