From 65ea18ccbbb0f5d39be35a04ef815aeabedf8d18 Mon Sep 17 00:00:00 2001 From: seroxdesign Date: Wed, 30 Jul 2025 05:48:19 -0400 Subject: [PATCH] c --- src/profitability/strategies/GovLstProfitabilityEngine.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/profitability/strategies/GovLstProfitabilityEngine.ts b/src/profitability/strategies/GovLstProfitabilityEngine.ts index a390973..c901d60 100644 --- a/src/profitability/strategies/GovLstProfitabilityEngine.ts +++ b/src/profitability/strategies/GovLstProfitabilityEngine.ts @@ -491,8 +491,9 @@ export class GovLstProfitabilityEngine implements IGovLstProfitabilityEngine { 'Fetching payout amount', ); - // Calculate realistic gas cost based on actual usage patterns (600k gas) - const REALISTIC_GAS_UNITS = BigInt(600000); // 600k gas based on production data + // Calculate realistic gas cost based on actual usage patterns + // Production data shows ~2-2.6M gas for 60-70 deposits + const REALISTIC_GAS_UNITS = BigInt(2500000); // 2.5M gas based on production simulations const gasPrice = await this.getGasPriceWithBuffer(); const gasCostWei = gasPrice * REALISTIC_GAS_UNITS; const realisticGasCost =