Skip to content

Commit 32352c2

Browse files
fix: raise deploy gas limit for V4 contract CREATE
Ticket: CGD-190
1 parent a6d3414 commit 32352c2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scripts/chainConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,10 @@ export async function getChainConfig(chainId: number): Promise<ChainConfig> {
378378
break;
379379
}
380380

381+
if (chainId === CHAIN_IDS.HPP) {
382+
gasParams = { ...gasParams, gasLimit: 16_000_000 };
383+
}
384+
381385
return {
382386
walletImplementationContractName,
383387
walletFactoryContractName,

0 commit comments

Comments
 (0)