From cbc263b5e6faac15324a3f36cc8945ccaff0eea2 Mon Sep 17 00:00:00 2001 From: Le Yu <6251863+ltyu@users.noreply.github.com> Date: Wed, 26 Jun 2024 17:44:39 -0400 Subject: [PATCH] Update gas constant for warp deploy --- .changeset/serious-cups-sneeze.md | 6 ++++++ typescript/cli/src/consts.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/serious-cups-sneeze.md diff --git a/.changeset/serious-cups-sneeze.md b/.changeset/serious-cups-sneeze.md new file mode 100644 index 0000000000..8833e4b767 --- /dev/null +++ b/.changeset/serious-cups-sneeze.md @@ -0,0 +1,6 @@ +--- +'@hyperlane-xyz/cli': minor +'@hyperlane-xyz/sdk': minor +--- + +Update warp deploy to handle xerc20, initializerArgs to be the signer, update deploy gas constants diff --git a/typescript/cli/src/consts.ts b/typescript/cli/src/consts.ts index 584ad97b91..b70dacb3d3 100644 --- a/typescript/cli/src/consts.ts +++ b/typescript/cli/src/consts.ts @@ -1,4 +1,4 @@ export const MINIMUM_CORE_DEPLOY_GAS = (1e8).toString(); -export const MINIMUM_WARP_DEPLOY_GAS = (1e7).toString(); +export const MINIMUM_WARP_DEPLOY_GAS = (3e8).toString(); // Rough calculation through deployments to testnets export const MINIMUM_TEST_SEND_GAS = (3e5).toString(); export const MINIMUM_AVS_GAS = (3e6).toString();