From aef13d7c83d4c18a93a6ac9ad9be43e472b53d71 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Wed, 25 Mar 2026 11:53:43 +0000 Subject: [PATCH 1/2] =?UTF-8?q?[#538]=20Update=20PL=5FTEST=20=E2=86=92=20P?= =?UTF-8?q?LOT=20token=20references?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update PLOT_TOKEN mainnet address to 0x4F567DACBF9D15A6acBe4A47FC2Ade0719Fb63C4 - Simplify RESERVE_LABEL to always "PLOT" (no testnet conditional) - lib/usd-price.ts automatically picks up new address via PLOT_TOKEN import - Bump version to 0.1.10 Fixes #538 Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/contracts/constants.ts | 8 +++----- package.json | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/contracts/constants.ts b/lib/contracts/constants.ts index 8af44989..0caf378b 100644 --- a/lib/contracts/constants.ts +++ b/lib/contracts/constants.ts @@ -39,15 +39,13 @@ export const ZAP_PLOTLINK = (IS_TESTNET ? "0x0000000000000000000000000000000000000000" : "0xAe50C9444DA2Ac80B209dC8B416d1B4A7D3939B0") as `0x${string}`; -/** $PLOT protocol token - * Testnet: PL_TEST ERC-20 on Base Sepolia - * Mainnet: $PLOT ERC-20 (backed by $HUNT via Mint Club V2) */ +/** $PLOT protocol token (backed by $HUNT via Mint Club V2) */ export const PLOT_TOKEN = (IS_TESTNET ? "0x6Ef4A3f654F2AfcEa8A8704D61Be5271536c13Fa" - : "0xF8A2C39111FCEB9C950aAf28A9E34EBaD99b85C1") as `0x${string}`; + : "0x4F567DACBF9D15A6acBe4A47FC2Ade0719Fb63C4") as `0x${string}`; /** Human-readable label for the reserve token */ -export const RESERVE_LABEL = IS_TESTNET ? "PL_TEST" : "PLOT"; +export const RESERVE_LABEL = "PLOT"; // --------------------------------------------------------------------------- // Supported Zap input tokens (Base) diff --git a/package.json b/package.json index 02b47bf5..5b3c0e19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink", - "version": "0.1.9", + "version": "0.1.10", "private": true, "workspaces": [ "packages/*" From ba1ee0bf073a760bc28293b5d76b88437d849641 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Wed, 25 Mar 2026 11:55:33 +0000 Subject: [PATCH 2/2] [#538] Fix: update .env.example PL_TEST reference to PLOT Co-Authored-By: Claude Opus 4.6 (1M context) --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 512a2d55..7f2e7a6a 100644 --- a/.env.example +++ b/.env.example @@ -47,7 +47,7 @@ NEXT_PUBLIC_CONTRACT_ADDRESS= # # Base Mainnet: # MCV2_Bond: 0xc5a076cad94176c2996B32d8466Be1cE757FAa27 -# PLOT_TOKEN (PL_TEST): 0xF8A2C39111FCEB9C950aAf28A9E34EBaD99b85C1 +# PLOT_TOKEN: 0x4F567DACBF9D15A6acBe4A47FC2Ade0719Fb63C4 # ----------------------------------------------------------------------------- # Contract Deployment (testnet only — used by Foundry deploy scripts)