Skip to content

Commit

Permalink
chore: add viction warp route labels to mainnet relayer (#3438)
Browse files Browse the repository at this point in the history
### Description

The prepare queue alert will automatically pick up viction if warp route
labels are set.

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
  • Loading branch information
daniel-savu authored Mar 19, 2024
1 parent 059bc96 commit 3adc0e9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions typescript/infra/config/environments/mainnet3/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ import inevmEthereumUsdcAddresses from './warp/inevm-USDC-addresses.json';
import inevmEthereumUsdtAddresses from './warp/inevm-USDT-addresses.json';
import injectiveInevmInjAddresses from './warp/injective-inevm-addresses.json';
import mantaTIAAddresses from './warp/manta-TIA-addresses.json';
import victionEthereumEthAddresses from './warp/viction-ETH-addresses.json';
import victionEthereumUsdcAddresses from './warp/viction-USDC-addresses.json';
import victionEthereumUsdtAddresses from './warp/viction-USDT-addresses.json';

const releaseCandidateHelloworldMatchingList = routerMatchingList(
helloWorld[Contexts.ReleaseCandidate].addresses,
Expand Down Expand Up @@ -163,6 +166,18 @@ const hyperlane: RootAgentConfig = {
name: 'inevm_ethereum_usdt',
matchingList: routerMatchingList(inevmEthereumUsdtAddresses),
},
{
name: 'viction_ethereum_eth',
matchingList: routerMatchingList(victionEthereumEthAddresses),
},
{
name: 'viction_ethereum_usdc',
matchingList: routerMatchingList(victionEthereumUsdcAddresses),
},
{
name: 'viction_ethereum_usdt',
matchingList: routerMatchingList(victionEthereumUsdtAddresses),
},
],
},
validators: {
Expand Down

0 comments on commit 3adc0e9

Please sign in to comment.