Deploy on chain fee quoting onto mainnet (#1954)

### Description

Enforce gas amounts on mainnet

### Drive-by changes

none

### Related issues

- Fixes #1610 

### Backward compatibility

_Are these changes backward compatible?_

Yes

_Are there any infrastructure implications, e.g. changes that would
prohibit deploying older commits using this infra tooling?_

None


### Testing

_What kind of testing have these changes undergone?_

Deployed & sent some test messages
pull/1959/head
Trevor Porter 2 years ago committed by GitHub
parent 5b021c6242
commit 61714e9ecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      typescript/infra/config/environments/mainnet2/agent.ts

@ -29,7 +29,7 @@ export const hyperlane: AgentConfig = {
context: Contexts.Hyperlane, context: Contexts.Hyperlane,
docker: { docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-agent', repo: 'gcr.io/abacus-labs-dev/hyperlane-agent',
tag: '1cbe5fd-20230309-202035', tag: '81ad229-20230316-173735',
}, },
aws: { aws: {
region: 'us-east-1', region: 'us-east-1',
@ -60,8 +60,7 @@ export const hyperlane: AgentConfig = {
matchingList: interchainQueriesMatchingList, matchingList: interchainQueriesMatchingList,
}, },
{ {
type: GasPaymentEnforcementPolicyType.Minimum, type: GasPaymentEnforcementPolicyType.OnChainFeeQuoting,
payment: '1',
}, },
], ],
}, },
@ -75,7 +74,7 @@ export const releaseCandidate: AgentConfig = {
context: Contexts.ReleaseCandidate, context: Contexts.ReleaseCandidate,
docker: { docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-agent', repo: 'gcr.io/abacus-labs-dev/hyperlane-agent',
tag: '1cbe5fd-20230309-202035', tag: '81ad229-20230316-173735',
}, },
aws: { aws: {
region: 'us-east-1', region: 'us-east-1',
@ -95,8 +94,7 @@ export const releaseCandidate: AgentConfig = {
matchingList: interchainQueriesMatchingList, matchingList: interchainQueriesMatchingList,
}, },
{ {
type: GasPaymentEnforcementPolicyType.Minimum, type: GasPaymentEnforcementPolicyType.OnChainFeeQuoting,
payment: '1',
}, },
], ],
transactionGasLimit: 750000, transactionGasLimit: 750000,

Loading…
Cancel
Save