From 3a8209df9030da2409ebabf07775699b5e6b7cb2 Mon Sep 17 00:00:00 2001 From: pbio <10051819+paulbalaji@users.noreply.github.com> Date: Thu, 7 Nov 2024 11:10:20 +0000 Subject: [PATCH] update scraper --- .../migration/src/m20230309_000001_create_table_domain.rs | 2 +- typescript/infra/config/environments/mainnet3/agent.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/main/agents/scraper/migration/src/m20230309_000001_create_table_domain.rs b/rust/main/agents/scraper/migration/src/m20230309_000001_create_table_domain.rs index 3a89e313dc..848bb05e48 100644 --- a/rust/main/agents/scraper/migration/src/m20230309_000001_create_table_domain.rs +++ b/rust/main/agents/scraper/migration/src/m20230309_000001_create_table_domain.rs @@ -490,7 +490,7 @@ impl MigrationTrait for Migration { .col(ColumnDef::new(Domain::TimeUpdated).timestamp().not_null()) .col(ColumnDef::new(Domain::Name).text().not_null()) .col(ColumnDef::new(Domain::NativeToken).text().not_null()) - .col(ColumnDef::new(Domain::ChainId).big_unsigned().unique_key()) + .col(ColumnDef::new(Domain::ChainId).big_unsigned()) .col(ColumnDef::new(Domain::IsTestNet).boolean().not_null()) .col(ColumnDef::new(Domain::IsDeprecated).boolean().not_null()) .to_owned(), diff --git a/typescript/infra/config/environments/mainnet3/agent.ts b/typescript/infra/config/environments/mainnet3/agent.ts index 9be2b53376..77d1cdb5f5 100644 --- a/typescript/infra/config/environments/mainnet3/agent.ts +++ b/typescript/infra/config/environments/mainnet3/agent.ts @@ -471,7 +471,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: '0772863-20241105-145942', + tag: '75d62ae-20241107-060707', }, gasPaymentEnforcement: gasPaymentEnforcement, metricAppContexts, @@ -480,7 +480,7 @@ const hyperlane: RootAgentConfig = { validators: { docker: { repo, - tag: '45399a3-20241025-210128', + tag: '75d62ae-20241107-060707', }, rpcConsensusType: RpcConsensusType.Quorum, chains: validatorChainConfig(Contexts.Hyperlane), @@ -490,7 +490,7 @@ const hyperlane: RootAgentConfig = { rpcConsensusType: RpcConsensusType.Fallback, docker: { repo, - tag: '38bd1ae-20241031-125333', + tag: '75d62ae-20241107-060707', }, resources: scraperResources, },