feat: add zkSync enum variant to HyperlaneDomainTechnicalStack (#4740)

### Description

To match the new TS schema

### 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/4741/head
Trevor Porter 4 weeks ago committed by GitHub
parent 7f3e0669d2
commit f9f0ece7c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      rust/main/hyperlane-core/src/chain.rs

@ -299,6 +299,7 @@ pub enum HyperlaneDomainTechnicalStack {
OpStack,
PolygonCDK,
PolkadotSubstrate,
ZkSync,
#[default]
Other,
}
@ -382,6 +383,7 @@ impl KnownHyperlaneDomain {
HyperlaneDomainTechnicalStack::PolkadotSubstrate: [
Moonbeam, Tangle
],
HyperlaneDomainTechnicalStack::ZkSync: [],
HyperlaneDomainTechnicalStack::Other: [
Avalanche, BinanceSmartChain, Celo, EclipseMainnet, Endurance, Ethereum,
FuseMainnet, Gnosis, Injective, Linea, Lukso, Neutron, Osmosis, Polygon,

Loading…
Cancel
Save