From 8db8fcd46e568f7c53a669b4fc0a090b9d6c7748 Mon Sep 17 00:00:00 2001 From: Trevor Porter Date: Wed, 22 Nov 2023 13:45:59 +0000 Subject: [PATCH] Deploy testnet4 & mainnet3 agents with image that includes merkle tree indexing fix (#2957) ### Description Image from the latest PR to trevor/new-featv3-cosmos-oct-28, which is https://github.com/hyperlane-xyz/hyperlane-monorepo/pull/2912 This includes a fix to merkle tree indexing so it indexes it in the same way as messages ### Drive-by changes ### Related issues ### Backward compatibility ### Testing --- typescript/infra/config/environments/mainnet3/agent.ts | 6 +++--- typescript/infra/config/environments/testnet4/agent.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/typescript/infra/config/environments/mainnet3/agent.ts b/typescript/infra/config/environments/mainnet3/agent.ts index d2922ebc9..f190ad773 100644 --- a/typescript/infra/config/environments/mainnet3/agent.ts +++ b/typescript/infra/config/environments/mainnet3/agent.ts @@ -42,14 +42,14 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: '2e1db12-20231025-013013', + tag: '1bee32a-20231121-121303', }, gasPaymentEnforcement, }, validators: { docker: { repo, - tag: '2e1db12-20231025-013013', + tag: '1bee32a-20231121-121303', }, rpcConsensusType: RpcConsensusType.Quorum, chains: validatorChainConfig(Contexts.Hyperlane), @@ -58,7 +58,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: '2e1db12-20231025-013013', + tag: '1bee32a-20231121-121303', }, }, }; diff --git a/typescript/infra/config/environments/testnet4/agent.ts b/typescript/infra/config/environments/testnet4/agent.ts index f3406d142..4d1019d64 100644 --- a/typescript/infra/config/environments/testnet4/agent.ts +++ b/typescript/infra/config/environments/testnet4/agent.ts @@ -49,7 +49,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: 'fd890d2-20231024-132022', + tag: '1bee32a-20231121-121303', }, blacklist: [ ...releaseCandidateHelloworldMatchingList, @@ -66,7 +66,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: 'fd890d2-20231024-132022', + tag: '1bee32a-20231121-121303', }, chains: validatorChainConfig(Contexts.Hyperlane), }, @@ -74,7 +74,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: 'fd890d2-20231024-132022', + tag: '1bee32a-20231121-121303', }, }, };