Skip to content

Commit

Permalink
chore: deploy block-by-block cosmos indexing everywhere (#3378)
Browse files Browse the repository at this point in the history
### Description

Updates the docker images and removes docker overrides

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
daniel-savu authored Mar 7, 2024
1 parent 9736164 commit 2567606
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 23 deletions.
26 changes: 7 additions & 19 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
// Just prior to Cosmos block-by-block indexing.
tag: '02d5549-20240228-203344',
// Includes Cosmos block-by-block indexing.
tag: '9736164-20240307-131918',
},
gasPaymentEnforcement,
metricAppContexts: [
Expand All @@ -150,19 +150,7 @@ const hyperlane: RootAgentConfig = {
validators: {
docker: {
repo,
tag: 'dd8ac43-20240306-113016',
},
chainDockerOverrides: {
// Because we're still ironing out issues with recent block-by-block indexing
// for Cosmos chains, and we want to avoid the regression in https://github.com/hyperlane-xyz/hyperlane-monorepo/pull/3257
// that allows validator tasks to silently fail, we use the commit just prior
// to 3257.
[Chains.injective]: {
tag: '02e64c9-20240214-170702',
},
[Chains.neutron]: {
tag: '02e64c9-20240214-170702',
},
tag: '9736164-20240307-131918',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.Hyperlane),
Expand All @@ -185,7 +173,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '6fb50e7-20240229-122630',
tag: '9736164-20240307-131918',
},
// whitelist: releaseCandidateHelloworldMatchingList,
gasPaymentEnforcement,
Expand All @@ -197,7 +185,7 @@ const releaseCandidate: RootAgentConfig = {
validators: {
docker: {
repo,
tag: '6fb50e7-20240229-122630',
tag: '9736164-20240307-131918',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.ReleaseCandidate),
Expand All @@ -221,8 +209,8 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
// Just prior to Cosmos block-by-block indexing.
tag: '02d5549-20240228-203344',
// Includes Cosmos block-by-block indexing.
tag: '9736164-20240307-131918',
},
gasPaymentEnforcement: [
{
Expand Down
8 changes: 4 additions & 4 deletions typescript/infra/config/environments/testnet4/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'dd8ac43-20240306-113016',
tag: '9736164-20240307-131918',
},
blacklist: [
...releaseCandidateHelloworldMatchingList,
Expand Down Expand Up @@ -159,7 +159,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'dd8ac43-20240306-113016',
tag: '9736164-20240307-131918',
},
chains: validatorChainConfig(Contexts.Hyperlane),
},
Expand All @@ -181,7 +181,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'dd8ac43-20240306-113016',
tag: '9736164-20240307-131918',
},
whitelist: [...releaseCandidateHelloworldMatchingList],
gasPaymentEnforcement,
Expand All @@ -194,7 +194,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'dd8ac43-20240306-113016',
tag: '9736164-20240307-131918',
},
chains: validatorChainConfig(Contexts.ReleaseCandidate),
},
Expand Down

0 comments on commit 2567606

Please sign in to comment.