Only run 1 injective validator (#3443)

### Description

<!--
What's included in this PR?
-->

### 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
-->
pull/3469/head
Trevor Porter 8 months ago committed by GitHub
parent 140e3c4bb5
commit fcb5f798ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      typescript/infra/config/aw-multisig.json
  2. 6
      typescript/infra/config/environments/mainnet3/validators.ts

@ -80,11 +80,7 @@
]
},
"injective": {
"validators": [
"0xbfb8911b72cfb138c7ce517c57d9c691535dc517",
"0x6faa139c33a7e6f53cb101f6b2ae392298283ed2",
"0x0115e3a66820fb99da30d30e2ce52a453ba99d92"
]
"validators": ["0xbfb8911b72cfb138c7ce517c57d9c691535dc517"]
},
"mantapacific": {
"validators": [

@ -216,11 +216,7 @@ export const validatorChainConfig = (
reorgPeriod: getReorgPeriod(chainMetadata.injective),
validators: validatorsConfig(
{
[Contexts.Hyperlane]: [
'0xbfb8911b72cfb138c7ce517c57d9c691535dc517',
'0x6faa139c33a7e6f53cb101f6b2ae392298283ed2',
'0x0115e3a66820fb99da30d30e2ce52a453ba99d92',
],
[Contexts.Hyperlane]: ['0xbfb8911b72cfb138c7ce517c57d9c691535dc517'],
[Contexts.ReleaseCandidate]: [],
[Contexts.Neutron]: [],
},

Loading…
Cancel
Save