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();