Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/components/airdrop/CampaignHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function BurnBar({

<div className="flex items-center justify-between text-xs">
<span className="text-muted">
Current FDV: {currentFdv > 0 ? formatUsdValue(currentFdv) : "—"}
Current MCap: {currentFdv > 0 ? formatUsdValue(currentFdv) : "—"}
</span>
<span className="text-foreground font-bold">
Pool value right now: {poolUsd > 0 ? formatUsdValue(poolUsd) : "$0"}
Expand Down Expand Up @@ -300,7 +300,7 @@ export function CampaignHero() {
>
<div>
<span className="text-foreground font-bold">
FDV {formatCompact(row.fdv)}
MCap {formatCompact(row.fdv)}
</span>
{row.cmcRank && (
<span className="text-muted text-[10px] ml-1.5">{row.cmcRank}</span>
Expand Down Expand Up @@ -337,6 +337,11 @@ export function CampaignHero() {
? `${data.totalParticipants} participants earning`
: "Be the first to participate"}
</div>

{/* ── MCap explanation footnote ── */}
<div className="text-center text-muted text-[10px]">
MCap = PLOT price × 1M max supply
</div>
</div>
);
}
4 changes: 2 additions & 2 deletions src/components/airdrop/UserPoints.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function UserPointsInner({ address }: { address: string }) {
const scenarioUsd = amount > 0 ? formatUsdValue(amount * scenarioPrice) : null;
return (
<div key={key} className="text-muted">
At {formatCompact(fdv)} FDV →{" "}
At {formatCompact(fdv)} MCap →{" "}
<span className="text-foreground font-medium">
{amount.toLocaleString()} PLOT
</span>
Expand All @@ -200,7 +200,7 @@ function UserPointsInner({ address }: { address: string }) {
})}
</div>
</InfoTooltip>
<div className="text-muted text-[10px] mt-0.5">(based on current FDV)</div>
<div className="text-muted text-[10px] mt-0.5">(based on current MCap)</div>
</div>
)}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/airdrop/WeeklySnapshots.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function WeeklySnapshots() {
<span className="text-foreground">{snap.newReferrals}</span>
</div>
<div className="text-muted">
FDV:{" "}
MCap:{" "}
<span className="text-foreground">
{formatUsdValue(snap.mcapStart)} → {formatUsdValue(snap.mcapEnd)}
</span>{" "}
Expand Down
Loading