Skip to content

Commit

Permalink
fix polygon chain id
Browse files Browse the repository at this point in the history
  • Loading branch information
mholtzman committed Aug 4, 2023
1 parent 9cd43ca commit 18ca7bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/store/migrate/migrations/38/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
v38StateSchema
} from './schema'

const pylonChainIds = ['1', '5', '10', '138', '42161', '11155111']
const pylonChainIds = ['1', '5', '10', '137', '42161', '11155111']
const retiredChainIds = ['3', '4', '42']
const chainsToMigrate = [...pylonChainIds, ...retiredChainIds]

Expand Down
2 changes: 1 addition & 1 deletion test/main/store/migrate/migrations/38.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const migratedChains = [
[5, 'Goerli'],
[10, 'Optimism'],
[42, 'Kovan'],
[138, 'Polygon'],
[137, 'Polygon'],
[42161, 'Arbitrum'],
[11155111, 'Sepolia']
]
Expand Down

0 comments on commit 18ca7bb

Please sign in to comment.