Skip to content

Commit

Permalink
enable zkevm networks (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCarlomagno authored Mar 6, 2024
1 parent 32152e9 commit 52faa76
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/base/src/utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export type PublicNetwork =
| 'moonbeam'
| 'matic'
| 'mumbai'
// | 'matic-zkevm'
// | 'matic-zkevm-testnet'
| 'matic-zkevm'
| 'matic-zkevm-testnet'
| 'avalanche'
| 'fuji'
| 'arbitrum'
Expand Down Expand Up @@ -68,6 +68,8 @@ export const Networks: Network[] = [
'moonbeam',
'matic',
'mumbai',
'matic-zkevm',
'matic-zkevm-testnet',
'avalanche',
'fuji',
'arbitrum',
Expand Down Expand Up @@ -130,8 +132,8 @@ const chainIds: { [key in Network]: number } = {
'moonbeam': 1284,
'matic': 137,
'mumbai': 80001,
// 'matic-zkevm': 1101,
// 'matic-zkevm-testnet': 1442,
'matic-zkevm': 1101,
'matic-zkevm-testnet': 1442,
'avalanche': 0xa86a,
'fuji': 0xa869,
'optimism': 10,
Expand Down

0 comments on commit 52faa76

Please sign in to comment.