From 7cf09ed045bb272d87b446494747336bd6486abc Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Tue, 5 May 2026 09:43:38 +0900 Subject: [PATCH] [#1053] Update test-mode milestones to current prod values TEST_CONFIG.MILESTONES were stale ($7K/$10K/$35K/$50K) and showing publicly because Vercel runs with NEXT_PUBLIC_AIRDROP_MODE=test. Update to match the canonical values in PROD_CONFIG and the "How does this work?" modal copy: $1M/$10M/$50M/$100M. Campaign dates and pool amount in TEST_CONFIG remain unchanged (only the milestone values were flagged as stale). Fixes #1053 Co-Authored-By: Claude Opus 4.7 (1M context) --- lib/airdrop/config.ts | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/airdrop/config.ts b/lib/airdrop/config.ts index fc3bea4..8d72b86 100644 --- a/lib/airdrop/config.ts +++ b/lib/airdrop/config.ts @@ -57,10 +57,10 @@ const TEST_CONFIG: AirdropConfig = { CAMPAIGN_END: new Date("2026-05-11"), // start + 7 days POOL_AMOUNT: 10, // 10 PLOT MILESTONES: { - BRONZE: { mcap: 7_000, pct: 10 }, - SILVER: { mcap: 10_000, pct: 30 }, - GOLD: { mcap: 35_000, pct: 50 }, - DIAMOND: { mcap: 50_000, pct: 100 }, + BRONZE: { mcap: 1_000_000, pct: 10 }, + SILVER: { mcap: 10_000_000, pct: 30 }, + GOLD: { mcap: 50_000_000, pct: 50 }, + DIAMOND: { mcap: 100_000_000, pct: 100 }, }, LOCKER_TX: "0xb4549d21a3a026d215f38d9bf50779fe337254944ae746d008b3b13cd684adce", POINTS, diff --git a/package.json b/package.json index cdb9374..3a3866f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "1.6.2", + "version": "1.6.3", "private": true, "workspaces": [ "packages/*"