Skip to content

Commit

Permalink
fix blockchainNetworkMap for zkevm and cardona
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroga committed Sep 16, 2024
1 parent 3c8b226 commit 4983670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ const blockchainNetworkMap = {
[`${Blockchain.Polygon}:${NetworkId.Main}`]: 0b0001_0000 | 0b0000_0001,
[`${Blockchain.Polygon}:${NetworkId.Mumbai}`]: 0b0001_0000 | 0b0000_0010,
[`${Blockchain.Polygon}:${NetworkId.Amoy}`]: 0b0001_0000 | 0b0000_0011,
[`${Blockchain.Polygon}:${NetworkId.Zkevm}`]: 0b0011_0000 | 0b0000_0001,
[`${Blockchain.Polygon}:${NetworkId.Cardona}`]: 0b0011_0000 | 0b0000_0010,
[`${Blockchain.Polygon}:${NetworkId.Zkevm}`]: 0b0001_0000 | 0b0000_0100,
[`${Blockchain.Polygon}:${NetworkId.Cardona}`]: 0b0001_0000 | 0b0000_0101,

Check warning on line 105 in src/constants.ts

View workflow job for this annotation

GitHub Actions / build

Unknown word: "Cardona"
[`${Blockchain.Ethereum}:${NetworkId.Main}`]: 0b0010_0000 | 0b0000_0001,
[`${Blockchain.Ethereum}:${NetworkId.Goerli}`]: 0b0010_0000 | 0b0000_0010,
[`${Blockchain.Ethereum}:${NetworkId.Sepolia}`]: 0b0010_0000 | 0b0000_0011,
Expand Down

0 comments on commit 4983670

Please sign in to comment.