Skip to content

Commit

Permalink
Don't charge neutron -> mantapacific
Browse files Browse the repository at this point in the history
  • Loading branch information
tkporter committed Oct 31, 2023
1 parent 771922c commit 738a7f7
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {
GasPaymentEnforcementPolicyType,
RpcConsensusType,
chainMetadata,
getDomainId,
} from '@hyperlane-xyz/sdk';

import { RootAgentConfig, allAgentChainNames } from '../../../src/config';
Expand Down Expand Up @@ -111,9 +112,22 @@ const neutron: RootAgentConfig = {
rpcConsensusType: RpcConsensusType.Fallback,
docker: {
repo,
tag: 'f47d6ab-20231031-124004',
tag: 'ff69559-20231031-172516',
},
gasPaymentEnforcement,
gasPaymentEnforcement: [
{
type: GasPaymentEnforcementPolicyType.None,
matchingList: [
{
originDomain: getDomainId(chainMetadata.neutron),
destinationDomain: getDomainId(chainMetadata.mantapacific),
senderAddress: '*',
recipientAddress: '*',
},
],
},
...gasPaymentEnforcement,
],
},
};

Expand Down

0 comments on commit 738a7f7

Please sign in to comment.