|
|
@ -71,12 +71,16 @@ async function helmValuesForChain<Chain extends ChainName>( |
|
|
|
chains: agentConfig.environmentChainNames.map((envChainName) => ({ |
|
|
|
chains: agentConfig.environmentChainNames.map((envChainName) => ({ |
|
|
|
name: envChainName, |
|
|
|
name: envChainName, |
|
|
|
disabled: !agentConfig.contextChainNames.includes(envChainName), |
|
|
|
disabled: !agentConfig.contextChainNames.includes(envChainName), |
|
|
|
signer: signers[envChainName], |
|
|
|
|
|
|
|
txsubmission: { |
|
|
|
txsubmission: { |
|
|
|
type: chainAgentConfig.transactionSubmissionType(envChainName), |
|
|
|
type: chainAgentConfig.transactionSubmissionType(envChainName), |
|
|
|
}, |
|
|
|
}, |
|
|
|
connection: baseConnectionConfig, |
|
|
|
connection: baseConnectionConfig, |
|
|
|
})), |
|
|
|
})), |
|
|
|
|
|
|
|
// Only the relayer has the signers on the chains config object
|
|
|
|
|
|
|
|
relayerChains: agentConfig.environmentChainNames.map((envChainName) => ({ |
|
|
|
|
|
|
|
name: envChainName, |
|
|
|
|
|
|
|
signer: signers[envChainName], |
|
|
|
|
|
|
|
})), |
|
|
|
validator: { |
|
|
|
validator: { |
|
|
|
enabled: chainAgentConfig.validatorEnabled, |
|
|
|
enabled: chainAgentConfig.validatorEnabled, |
|
|
|
configs: await chainAgentConfig.validatorConfigs(), |
|
|
|
configs: await chainAgentConfig.validatorConfigs(), |
|
|
|