feat: add more options to ChainTechnicalStack enum (#4656)

### Description

Adding more technical stack options to the `ChainTechnicalStack` enum,
to be used to populate metadata in the registry.

Including `zksync` pre-emptively.

### Drive-by changes

n/a

### Related issues


https://www.notion.so/hyperlanexyz/Adding-more-technical-stacks-to-chain-metadata-11a6d35200d68015a229da552928d4d9?pvs=4

### Backward compatibility

yes

### Testing

na
pull/4648/head
Paul Balaji 1 month ago committed by GitHub
parent 2afc484a2b
commit 6176c9861d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .changeset/gorgeous-rockets-walk.md
  2. 4
      typescript/sdk/src/metadata/chainMetadataTypes.ts

@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---
Add opstack, polygoncdk, polkadotsubstrate and zksync to ChainTechnicalStack enum

@ -19,6 +19,10 @@ export enum ExplorerFamily {
export enum ChainTechnicalStack {
ArbitrumNitro = 'arbitrumnitro',
OpStack = 'opstack',
PolygonCDK = 'polygoncdk',
PolkadotSubstrate = 'polkadotsubstrate',
ZkSync = 'zksync',
Other = 'other',
}

Loading…
Cancel
Save