Skip to content

Commit f021f86

Browse files
authored
chore: spin down vanguard0 (hyperlane-xyz#6121)
### Description chore: spin down vanguard0 - update hyperlane image tag to latest `main` build - remove vanguard blacklisting - remove vanguard from keyfunder config ### Drive-by changes - add `ontology` to keyfunder `chainsToSkip`, as we have not received funding for deploying on that chain yet ### 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 -->
1 parent f05ebc4 commit f021f86

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

typescript/infra/config/environments/mainnet3/agent.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -846,9 +846,9 @@ const hyperlane: RootAgentConfig = {
846846
rpcConsensusType: RpcConsensusType.Fallback,
847847
docker: {
848848
repo,
849-
tag: '3a04631-20250428-170554',
849+
tag: 'f05ebc4-20250502-225226',
850850
},
851-
blacklist: [...blacklist, ...vanguardMatchingList],
851+
blacklist,
852852
gasPaymentEnforcement: gasPaymentEnforcement,
853853
metricAppContextsGetter,
854854
ismCacheConfigs,
@@ -886,9 +886,9 @@ const releaseCandidate: RootAgentConfig = {
886886
rpcConsensusType: RpcConsensusType.Fallback,
887887
docker: {
888888
repo,
889-
tag: '673c6d2-20250502-141150',
889+
tag: 'f05ebc4-20250502-225226',
890890
},
891-
blacklist: [...blacklist, ...vanguardMatchingList],
891+
blacklist,
892892
// We're temporarily (ab)using the RC relayer as a way to increase
893893
// message throughput.
894894
// whitelist: releaseCandidateHelloworldMatchingList,
@@ -924,9 +924,9 @@ const neutron: RootAgentConfig = {
924924
rpcConsensusType: RpcConsensusType.Fallback,
925925
docker: {
926926
repo,
927-
tag: '3a04631-20250428-170554',
927+
tag: 'f05ebc4-20250502-225226',
928928
},
929-
blacklist: [...blacklist, ...vanguardMatchingList],
929+
blacklist,
930930
gasPaymentEnforcement,
931931
metricAppContextsGetter,
932932
ismCacheConfigs,

typescript/infra/config/environments/mainnet3/funding.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ export const keyFunderConfig: KeyFunderConfig<
3232
contextsAndRolesToFund: {
3333
[Contexts.Hyperlane]: [Role.Relayer, Role.Kathy],
3434
[Contexts.ReleaseCandidate]: [Role.Relayer, Role.Kathy],
35-
[Contexts.Vanguard0]: [Role.Relayer],
3635
},
37-
chainsToSkip: [],
36+
chainsToSkip: ['ontology'],
3837
// desired balance config, must be set for each chain
3938
desiredBalancePerChain: desiredRelayerBalancePerChain,
4039
// if not set, keyfunder defaults to 0

0 commit comments

Comments
 (0)