Skip to content

Commit

Permalink
feat: add more options to ChainTechnicalStack enum (#4656)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
paulbalaji authored Oct 9, 2024
1 parent 2afc484 commit 6176c98
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/gorgeous-rockets-walk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hyperlane-xyz/sdk': minor
---

Add opstack, polygoncdk, polkadotsubstrate and zksync to ChainTechnicalStack enum
4 changes: 4 additions & 0 deletions typescript/sdk/src/metadata/chainMetadataTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ export enum ExplorerFamily {

export enum ChainTechnicalStack {
ArbitrumNitro = 'arbitrumnitro',
OpStack = 'opstack',
PolygonCDK = 'polygoncdk',
PolkadotSubstrate = 'polkadotsubstrate',
ZkSync = 'zksync',
Other = 'other',
}

Expand Down

0 comments on commit 6176c98

Please sign in to comment.