From 3e72ef70b8204936d7b11e552041f6c1b3137438 Mon Sep 17 00:00:00 2001 From: Lee <6251863+ltyu@users.noreply.github.com> Date: Wed, 13 Nov 2024 09:55:17 -0500 Subject: [PATCH] fix: Update MINIMUM_WARP_DEPLOY_GAS (#4853) ### Description Reduce by 30x Screenshot_2024-11-11_at_2 12 03_PM --- typescript/cli/src/consts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/cli/src/consts.ts b/typescript/cli/src/consts.ts index 674f7dd15..9fb27df9f 100644 --- a/typescript/cli/src/consts.ts +++ b/typescript/cli/src/consts.ts @@ -1,5 +1,5 @@ export const MINIMUM_CORE_DEPLOY_GAS = (1e8).toString(); -export const MINIMUM_WARP_DEPLOY_GAS = (6e8).toString(); // Rough calculation through deployments to testnets with 2x buffer +export const MINIMUM_WARP_DEPLOY_GAS = (3e7).toString(); export const MINIMUM_TEST_SEND_GAS = (3e5).toString(); export const MINIMUM_AVS_GAS = (3e6).toString(); export const PROXY_DEPLOYED_URL = 'https://proxy.hyperlane.xyz';