@@ -21,6 +21,7 @@ import {
2121} from '../../../src/config/agent/relayer.js' ;
2222import { ALL_KEY_ROLES , Role } from '../../../src/roles.js' ;
2323import { Contexts } from '../../contexts.js' ;
24+ import { DockerImageRepos , testnetDockerTags } from '../../docker.js' ;
2425import { getDomainId } from '../../registry.js' ;
2526
2627import { environment , ethereumChainNames } from './chains.js' ;
@@ -35,8 +36,6 @@ const releaseCandidateHelloworldMatchingList = routerMatchingList(
3536 helloWorld [ Contexts . ReleaseCandidate ] . addresses ,
3637) ;
3738
38- const repo = 'gcr.io/abacus-labs-dev/hyperlane-agent' ;
39-
4039// The chains here must be consistent with the environment's supportedChainNames, which is
4140// checked / enforced at runtime & in the CI pipeline.
4241//
@@ -345,8 +344,8 @@ const hyperlane: RootAgentConfig = {
345344 relayer : {
346345 rpcConsensusType : RpcConsensusType . Fallback ,
347346 docker : {
348- repo,
349- tag : 'cd94774-20251217-100437' ,
347+ repo : DockerImageRepos . AGENT ,
348+ tag : testnetDockerTags . relayer ,
350349 } ,
351350 blacklist : [ ...releaseCandidateHelloworldMatchingList , ...relayBlacklist ] ,
352351 gasPaymentEnforcement,
@@ -366,17 +365,17 @@ const hyperlane: RootAgentConfig = {
366365 validators : {
367366 rpcConsensusType : RpcConsensusType . Fallback ,
368367 docker : {
369- repo,
370- tag : 'cd94774-20251217-100437' ,
368+ repo : DockerImageRepos . AGENT ,
369+ tag : testnetDockerTags . validator ,
371370 } ,
372371 chains : validatorChainConfig ( Contexts . Hyperlane ) ,
373372 resources : validatorResources ,
374373 } ,
375374 scraper : {
376375 rpcConsensusType : RpcConsensusType . Fallback ,
377376 docker : {
378- repo,
379- tag : 'f50feaa-20251219-084739' ,
377+ repo : DockerImageRepos . AGENT ,
378+ tag : testnetDockerTags . scraper ,
380379 } ,
381380 resources : scraperResources ,
382381 } ,
@@ -390,8 +389,8 @@ const releaseCandidate: RootAgentConfig = {
390389 relayer : {
391390 rpcConsensusType : RpcConsensusType . Fallback ,
392391 docker : {
393- repo,
394- tag : 'cd94774-20251217-100437' ,
392+ repo : DockerImageRepos . AGENT ,
393+ tag : testnetDockerTags . relayerRC ,
395394 } ,
396395 blacklist : relayBlacklist ,
397396 gasPaymentEnforcement,
@@ -411,8 +410,8 @@ const releaseCandidate: RootAgentConfig = {
411410 validators : {
412411 rpcConsensusType : RpcConsensusType . Fallback ,
413412 docker : {
414- repo,
415- tag : 'cd94774-20251217-100437' ,
413+ repo : DockerImageRepos . AGENT ,
414+ tag : testnetDockerTags . validatorRC ,
416415 } ,
417416 chains : validatorChainConfig ( Contexts . ReleaseCandidate ) ,
418417 resources : validatorResources ,
@@ -438,8 +437,8 @@ const neutron: RootAgentConfig = {
438437 relayer : {
439438 rpcConsensusType : RpcConsensusType . Fallback ,
440439 docker : {
441- repo,
442- tag : 'cd94774-20251217-100437' ,
440+ repo : DockerImageRepos . AGENT ,
441+ tag : testnetDockerTags . relayerRC ,
443442 } ,
444443 blacklist : relayBlacklist ,
445444 gasPaymentEnforcement,
@@ -459,8 +458,8 @@ const neutron: RootAgentConfig = {
459458 validators : {
460459 rpcConsensusType : RpcConsensusType . Fallback ,
461460 docker : {
462- repo,
463- tag : 'cd94774-20251217-100437' ,
461+ repo : DockerImageRepos . AGENT ,
462+ tag : testnetDockerTags . validatorRC ,
464463 } ,
465464 chains : validatorChainConfig ( Contexts . ReleaseCandidate ) ,
466465 resources : validatorResources ,
0 commit comments