diff --git a/rust/chains/hyperlane-ethereum/src/mailbox.rs b/rust/chains/hyperlane-ethereum/src/mailbox.rs index 587d726fb8..dca90f4b7f 100644 --- a/rust/chains/hyperlane-ethereum/src/mailbox.rs +++ b/rust/chains/hyperlane-ethereum/src/mailbox.rs @@ -282,6 +282,15 @@ where tx = tx.gas_price(gas_price); } } + if self.domain.id() == 56 { + if let Ok(gas_price) = std::env::var("BSC_GAS_PRICE") + .unwrap_or_default() + .parse::() + { + debug!(%gas_price, "Using custom gas price for BSC"); + tx = tx.gas_price(gas_price); + } + } Ok(tx) } } diff --git a/typescript/infra/config/environments/mainnet2/agent.ts b/typescript/infra/config/environments/mainnet2/agent.ts index 217c237d7c..4741d3619c 100644 --- a/typescript/infra/config/environments/mainnet2/agent.ts +++ b/typescript/infra/config/environments/mainnet2/agent.ts @@ -127,7 +127,7 @@ const hyperlane: RootAgentConfig = { connectionType: AgentConnectionType.HttpFallback, docker: { repo, - tag: '475bd1c-20240416-105206', + tag: '113b19a-20240807-084327', }, blacklist: [ ...releaseCandidateHelloworldMatchingList,