You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"FDV" (Fully Diluted Valuation) is crypto jargon that most users don't understand. The airdrop page uses FDV everywhere — milestone targets, burn bar, status display, milestone rows. Should use "MCap" (Market Cap) which is far more widely understood.
Context
PLOT's MCap calculation is actually FDV-based: `price × 1,000,000 (max supply)`. This is because PLOT has a fixed max supply with no inflation, so FDV = MCap in practice.
Solution
Replace all user-facing "FDV" labels with "MCap"
Add a one-time explanation somewhere unobtrusive (tooltip or footnote): "MCap = PLOT price × 1M max supply"
Keep internal variable names as-is (`currentFdv`, `mcap` in config) — this is a display-only change
Files to update
`src/components/airdrop/CampaignHero.tsx` — burn bar labels, milestone rows, current FDV display
Problem
"FDV" (Fully Diluted Valuation) is crypto jargon that most users don't understand. The airdrop page uses FDV everywhere — milestone targets, burn bar, status display, milestone rows. Should use "MCap" (Market Cap) which is far more widely understood.
Context
PLOT's MCap calculation is actually FDV-based: `price × 1,000,000 (max supply)`. This is because PLOT has a fixed max supply with no inflation, so FDV = MCap in practice.
Solution
Files to update
Acceptance Criteria