Skip to content

Commit

Permalink
new image
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Nov 1, 2023
1 parent 738a7f7 commit 6922167
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
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 @@ -54,10 +54,10 @@ const hyperlane: RootAgentConfig = {
},
chainDockerOverrides: {
[chainMetadata.neutron.name]: {
tag: 'f47d6ab-20231031-124004',
tag: '2ba12dc-20231101-103934',
},
[chainMetadata.mantapacific.name]: {
tag: 'f47d6ab-20231031-124004',
tag: '2ba12dc-20231101-103934',
},
},
rpcConsensusType: RpcConsensusType.Quorum,
Expand Down Expand Up @@ -112,7 +112,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'ff69559-20231031-172516',
tag: '2ba12dc-20231101-103934',
},
gasPaymentEnforcement: [
{
Expand Down
4 changes: 2 additions & 2 deletions typescript/infra/config/environments/testnet4/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const hyperlane: RootAgentConfig = {
},
chainDockerOverrides: {
neutrontestnet: {
tag: 'f47d6ab-20231031-124004',
tag: '2ba12dc-20231101-103934',
},
},
chains: validatorChainConfig(Contexts.Hyperlane),
Expand Down Expand Up @@ -125,7 +125,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'f47d6ab-20231031-124004',
tag: '2ba12dc-20231101-103934',
},
gasPaymentEnforcement,
transactionGasLimit: 750000,
Expand Down
4 changes: 4 additions & 0 deletions typescript/infra/scripts/agents/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export class AgentCli {
switch (role) {
case Role.Validator:
for (const chain of this.agentConfig.contextChainNames[role]) {
const matches = ['neutron', 'neutrontestnet', 'mantapacific'];
if (!matches.includes(chain)) {
continue;
}
const key = `${role}-${chain}`;
managers[key] = new ValidatorHelmManager(this.agentConfig, chain);
}
Expand Down

0 comments on commit 6922167

Please sign in to comment.