Skip to content

Commit

Permalink
Deploy new agents w/ Polygon gas fix (#2999)
Browse files Browse the repository at this point in the history
### Description

Deploys w/ #2998

### Drive-by changes

- Had to remove mantapacific from the list of scraper chains because
it's not present in the DB domain table atm

### Related issues

n/a

### Backward compatibility

n/a

### Testing

Deployed
  • Loading branch information
tkporter authored Nov 29, 2023
1 parent c2288eb commit b60e5d9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
12 changes: 6 additions & 6 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
gasPaymentEnforcement,
},
validators: {
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.Hyperlane),
Expand All @@ -59,7 +59,7 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
},
};
Expand All @@ -72,7 +72,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
// whitelist: releaseCandidateHelloworldMatchingList,
gasPaymentEnforcement,
Expand All @@ -84,7 +84,7 @@ const releaseCandidate: RootAgentConfig = {
validators: {
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
rpcConsensusType: RpcConsensusType.Quorum,
chains: validatorChainConfig(Contexts.ReleaseCandidate),
Expand All @@ -108,7 +108,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
gasPaymentEnforcement: [
{
Expand Down
5 changes: 4 additions & 1 deletion typescript/infra/config/environments/mainnet3/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,8 @@ export const agentChainNames: AgentChainNames = {
[Role.Validator]: supportedChainNames,
// Only run relayers for Ethereum chains at the moment.
[Role.Relayer]: ethereumChainNames,
[Role.Scraper]: ethereumChainNames,
// Remove mantapacific for now, as it's not included in the scraper domains table
[Role.Scraper]: ethereumChainNames.filter(
(chainName) => chainName !== chainMetadata.mantapacific.name,
),
};
12 changes: 6 additions & 6 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: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
blacklist: [
...releaseCandidateHelloworldMatchingList,
Expand All @@ -67,15 +67,15 @@ const hyperlane: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
chains: validatorChainConfig(Contexts.Hyperlane),
},
scraper: {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
},
};
Expand All @@ -88,7 +88,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
whitelist: [...releaseCandidateHelloworldMatchingList],
gasPaymentEnforcement,
Expand All @@ -101,7 +101,7 @@ const releaseCandidate: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
chains: validatorChainConfig(Contexts.ReleaseCandidate),
},
Expand All @@ -120,7 +120,7 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: '50aed86-20231128-120255',
tag: 'c2288eb-20231129-115257',
},
gasPaymentEnforcement,
transactionGasLimit: 750000,
Expand Down

0 comments on commit b60e5d9

Please sign in to comment.