From fd12aaf3060bc321993770640c3d150644559cc3 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 20 Nov 2025 09:47:28 +0300 Subject: [PATCH] feat(presale): update conversion rate to 1 wUSDT = 20 PEZ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update calculatePezReceived() to use 20x multiplier - Update UI displays in Pre-Sale Terms section - Update "not started" page conversion rate display - Keep all other presale functionality intact Aligns frontend with pallet configuration (ConversionRate = 20). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- web/src/pages/Presale.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/pages/Presale.tsx b/web/src/pages/Presale.tsx index 1ed5d214..b3d1c345 100644 --- a/web/src/pages/Presale.tsx +++ b/web/src/pages/Presale.tsx @@ -150,7 +150,7 @@ export default function Presale() { const calculatePezReceived = (wusdtAmount: string): number => { const amount = parseFloat(wusdtAmount); - return isNaN(amount) ? 0 : amount * 100; // 1 wUSDT = 100 PEZ + return isNaN(amount) ? 0 : amount * 20; // 1 wUSDT = 20 PEZ }; const progressPercentage = () => { @@ -182,7 +182,7 @@ export default function Presale() {
Conversion Rate: - 1 wUSDT = 100 PEZ + 1 wUSDT = 20 PEZ
Accepted Token: @@ -318,7 +318,7 @@ export default function Presale() {
Conversion Rate: - 1 wUSDT = 100 PEZ + 1 wUSDT = 20 PEZ
Distribution: