From 628830d5b37ea3de2ac098679597994875dbfae5 Mon Sep 17 00:00:00 2001 From: Matt Rice Date: Thu, 8 Jan 2026 20:28:49 -0500 Subject: [PATCH] fix: update mainnet gas pricing Signed-off-by: Matt Rice --- packages/financial-templates-lib/src/helpers/GasEstimator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/financial-templates-lib/src/helpers/GasEstimator.ts b/packages/financial-templates-lib/src/helpers/GasEstimator.ts index 0348d3b084..9b2cb464b4 100644 --- a/packages/financial-templates-lib/src/helpers/GasEstimator.ts +++ b/packages/financial-templates-lib/src/helpers/GasEstimator.ts @@ -55,8 +55,8 @@ interface PolygonGasStationResponse { export const MAPPING_BY_NETWORK: GasEstimatorMapping = { 1: { url: "https://api.etherscan.io/api?module=gastracker&action=gasoracle", - defaultMaxFeePerGasGwei: 500, - defaultMaxPriorityFeePerGasGwei: 1, + defaultMaxFeePerGasGwei: 20, + defaultMaxPriorityFeePerGasGwei: 0.001, type: NetworkType.London, }, 10: { defaultFastPriceGwei: 1, type: NetworkType.Legacy },