From 32352c280a0587449a5e27770dab049e96731f34 Mon Sep 17 00:00:00 2001 From: Yashvanth B L Date: Tue, 28 Apr 2026 16:40:37 +0530 Subject: [PATCH] fix: raise deploy gas limit for V4 contract CREATE Ticket: CGD-190 --- scripts/chainConfig.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/chainConfig.ts b/scripts/chainConfig.ts index ff8241c..7f7927f 100644 --- a/scripts/chainConfig.ts +++ b/scripts/chainConfig.ts @@ -378,6 +378,10 @@ export async function getChainConfig(chainId: number): Promise { break; } + if (chainId === CHAIN_IDS.HPP) { + gasParams = { ...gasParams, gasLimit: 16_000_000 }; + } + return { walletImplementationContractName, walletFactoryContractName,