Skip to content

Commit

Permalink
Deploy agents w/ new release (#2992)
Browse files Browse the repository at this point in the history
### Description

deploys agents with new release

### Drive-by changes

n/a

### Related issues

n/a
### Backward compatibility

ye

### Testing

deployed
  • Loading branch information
tkporter authored Nov 29, 2023
1 parent 3163475 commit 016cbb5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 26 deletions.
20 changes: 6 additions & 14 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,14 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '48feaf4-20231122-200632',
tag: '50aed86-20231128-120255',
},
gasPaymentEnforcement,
},
validators: {
docker: {
repo,
tag: '1bee32a-20231121-121303',
},
chainDockerOverrides: {
[chainMetadata.neutron.name]: {
tag: '5070398-20231108-172634',
},
[chainMetadata.mantapacific.name]: {
tag: '5070398-20231108-172634',
},
tag: '50aed86-20231128-120255',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.Hyperlane),
Expand All @@ -67,7 +59,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '1bee32a-20231121-121303',
tag: '50aed86-20231128-120255',
},
},
};
Expand All @@ -80,7 +72,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '35fdc74-20230913-104940',
tag: '50aed86-20231128-120255',
},
// whitelist: releaseCandidateHelloworldMatchingList,
gasPaymentEnforcement,
Expand All @@ -92,7 +84,7 @@ const releaseCandidate: RootAgentConfig = {
validators: {
docker: {
repo,
tag: 'ed7569d-20230725-171222',
tag: '50aed86-20231128-120255',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.ReleaseCandidate),
Expand All @@ -116,7 +108,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '68bad33-20231109-024958',
tag: '50aed86-20231128-120255',
},
gasPaymentEnforcement: [
{
Expand Down
17 changes: 6 additions & 11 deletions typescript/infra/config/environments/testnet4/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '48feaf4-20231122-200632',
tag: '50aed86-20231128-120255',
},
blacklist: [
...releaseCandidateHelloworldMatchingList,
Expand All @@ -67,20 +67,15 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '1bee32a-20231121-121303',
},
chainDockerOverrides: {
neutrontestnet: {
tag: '5070398-20231108-172634',
},
tag: '50aed86-20231128-120255',
},
chains: validatorChainConfig(Contexts.Hyperlane),
},
scraper: {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '1bee32a-20231121-121303',
tag: '50aed86-20231128-120255',
},
},
};
Expand All @@ -93,7 +88,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'fd890d2-20231024-132022',
tag: '50aed86-20231128-120255',
},
whitelist: [...releaseCandidateHelloworldMatchingList],
gasPaymentEnforcement,
Expand All @@ -106,7 +101,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'fd890d2-20231024-132022',
tag: '50aed86-20231128-120255',
},
chains: validatorChainConfig(Contexts.ReleaseCandidate),
},
Expand All @@ -125,7 +120,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '5070398-20231108-172634',
tag: '50aed86-20231128-120255',
},
gasPaymentEnforcement,
transactionGasLimit: 750000,
Expand Down
2 changes: 1 addition & 1 deletion typescript/infra/config/environments/testnet4/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ethereumTestnetConfigs: ChainMap<ChainMetadata> = {
// Blessed non-Ethereum chains.
export const nonEthereumTestnetConfigs: ChainMap<ChainMetadata> = {
// solanadevnet: chainMetadata.solanadevnet,
neutrontestnet: chainMetadata.neutrontestnet,
// neutrontestnet: chainMetadata.neutrontestnet,
};

export const testnetConfigs: ChainMap<ChainMetadata> = {
Expand Down

0 comments on commit 016cbb5

Please sign in to comment.