Skip to content

Commit

Permalink
add support to matic zkevm (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCarlomagno committed May 2, 2024
1 parent fee8405 commit 29e294b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/base/src/utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ type PublicNetwork =
| 'moonbeam'
| 'matic'
| 'mumbai'
| 'matic-zkevm'
| 'matic-zkevm-testnet'
| 'avalanche'
| 'fuji'
| 'optimism'
Expand Down Expand Up @@ -61,6 +63,8 @@ export const Networks: Network[] = [
'moonbeam',
'matic',
'mumbai',
'matic-zkevm',
'matic-zkevm-testnet',
'avalanche',
'fuji',
'optimism',
Expand Down Expand Up @@ -117,6 +121,8 @@ const chainIds: { [key in Network]: number } = {
'moonbeam': 1284,
'matic': 137,
'mumbai': 80001,
'matic-zkevm': 1101,
'matic-zkevm-testnet': 1442,
'avalanche': 0xa86a,
'fuji': 0xa869,
'optimism': 10,
Expand Down

0 comments on commit 29e294b

Please sign in to comment.