From b09f97eca0fc953e8fa93bce02afd5b3897c1f29 Mon Sep 17 00:00:00 2001 From: Paul Balaji <10051819+paulbalaji@users.noreply.github.com> Date: Mon, 30 Dec 2024 17:57:53 +0000 Subject: [PATCH] chore: update relayer image (#5091) ### Description - update image in config to the current relayer image tag - add USDC/ethereum-inevm test tx to blacklist https://explorer.hyperlane.xyz/message/0x998746dc822dc15332b8683fb8a29aec22ed3e2f2fb8245c40f56303c5cb6032 top ### Drive-by changes ### Related issues ### Backward compatibility ### Testing Signed-off-by: pbio <10051819+paulbalaji@users.noreply.github.com> --- typescript/infra/config/environments/mainnet3/agent.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/typescript/infra/config/environments/mainnet3/agent.ts b/typescript/infra/config/environments/mainnet3/agent.ts index 1cbc6d1d24..f886bd802b 100644 --- a/typescript/infra/config/environments/mainnet3/agent.ts +++ b/typescript/infra/config/environments/mainnet3/agent.ts @@ -602,6 +602,10 @@ const blacklistedMessageIds = [ // txs between unenrolled routers of // USDT/arbitrum-ethereum-mantle-mode-polygon-scroll-zeronetwork '0x10159bf1b5b2142b882cb060d1da9f9123d82974ca265ba432138221e52c2a27', + + // test tx when route was first deployed, no merkle tree insertion + // USDC/ethereum-inevm + '0x998746dc822dc15332b8683fb8a29aec22ed3e2f2fb8245c40f56303c5cb6032', ]; // Blacklist matching list intended to be used by all contexts. @@ -618,7 +622,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: '234704d-20241226-192528', + tag: 'f73dcc3-20241229-154524', }, blacklist, gasPaymentEnforcement: gasPaymentEnforcement,