Skip to content

Commit

Permalink
🌝 Add optimism sepolia to chain ids
Browse files Browse the repository at this point in the history
  • Loading branch information
MiZiet committed May 13, 2024
1 parent 873b997 commit c275fb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/core/src/constants/chainId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ import {
MantleTestnet,
KromaSepoliaTestnet,
KromaMainnet,
OptimismSepolia,
} from '../model'

// rough alphabet order (put network from the same chain together)
Expand Down Expand Up @@ -121,6 +122,7 @@ export const DEFAULT_SUPPORTED_CHAINS = [
ThunderCoreTestnet,
OptimismGoerli,
OptimismKovan,
OptimismSepolia,
Optimism,
Velas,
VelasTestnet,
Expand Down Expand Up @@ -187,6 +189,7 @@ export enum ChainId {
Andromeda = 1088,
OptimismGoerli = 420,
OptimismKovan = 69,
OptimismSepolia = 11155420,
Optimism = 10,
Arbitrum = 42161,
ArbitrumRinkeby = 421611,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/hooks/useConfig.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('useConfig', () => {
const { result, waitForCurrent } = await renderDAppHook(() => useConfig(), { config: setup.config })
await waitForCurrent((val) => val !== undefined)
expect(result.error).to.be.undefined
expect(result.current.networks?.length).to.eq(68)
expect(result.current.networks?.length).to.eq(69)
expect(result.current.notifications?.checkInterval).to.eq(500)
expect(result.current.notifications?.expirationPeriod).to.eq(5000)
})
Expand Down

0 comments on commit c275fb2

Please sign in to comment.