From 80de0214eea1bc8adc3ecc27814affab020c732b Mon Sep 17 00:00:00 2001 From: ercmine Date: Tue, 31 Mar 2026 14:38:01 -0500 Subject: [PATCH] Increase perbug claimable distance to 500m --- backend/src/perbug/service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/perbug/service.ts b/backend/src/perbug/service.ts index 92fc6981..293fa118 100644 --- a/backend/src/perbug/service.ts +++ b/backend/src/perbug/service.ts @@ -21,7 +21,7 @@ import type { WalletAddress, } from "./domain.js"; -const MAX_PLANT_DISTANCE_METERS = 120; +const MAX_PLANT_DISTANCE_METERS = 500; const ZERO_WALLET = "0x0000000000000000000000000000000000000000" as WalletAddress; const DIG_UP_FEE_WEI = "100000000000000000"; const DIG_UP_FEE_ETH = "0.1";