Skip to content

Commit

Permalink
update scraper
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalaji committed Nov 7, 2024
1 parent 75d62ae commit 3a8209d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
6 changes: 3 additions & 3 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '0772863-20241105-145942',
tag: '75d62ae-20241107-060707',
},
gasPaymentEnforcement: gasPaymentEnforcement,
metricAppContexts,
Expand All @@ -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),
Expand All @@ -490,7 +490,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '38bd1ae-20241031-125333',
tag: '75d62ae-20241107-060707',
},
resources: scraperResources,
},
Expand Down

0 comments on commit 3a8209d

Please sign in to comment.