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
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 3 additions & 5 deletions lib/contracts/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink",
"version": "0.1.9",
"version": "0.1.10",
"private": true,
"workspaces": [
"packages/*"
Expand Down
Loading