Skip to content

Commit

Permalink
Increase deployment gas units
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Jan 22, 2025
1 parent 068b856 commit 9735bce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/consts/consts.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export const MIN_CHAIN_BALANCE = 1; // 1 Wei
// TODO consider reducing this by ~30% if mid-deploying gas top-ups are implemented
export const WARP_DEPLOY_GAS_UNITS = BigInt(2e7);
// Should match CLI here:
// https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/cli/src/consts.ts#L2
export const WARP_DEPLOY_GAS_UNITS = BigInt(3e7);
export const REFUND_FEE_PADDING_FACTOR = 1.2;
export const MIN_DEPLOYER_BALANCE_TO_SHOW = BigInt(1e15); // 0.001 ETH

0 comments on commit 9735bce

Please sign in to comment.