Skip to content

Commit

Permalink
Add holesky network (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahnami authored Mar 12, 2024
1 parent 75e9ba0 commit 338c440
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/base/src/utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type SupportedNetwork = PublicNetwork | CustomNetwork;
export type PublicNetwork =
| 'mainnet'
| 'sepolia'
| 'holesky'
| 'goerli'
| 'xdai'
| 'sokol'
Expand Down Expand Up @@ -55,6 +56,7 @@ export type TenantNetwork = string;
export const Networks: Network[] = [
'mainnet',
'sepolia',
'holesky',
'goerli',
'xdai',
'sokol',
Expand Down Expand Up @@ -119,6 +121,7 @@ export function toChainId(network: Network): number | undefined {
const chainIds: { [key in Network]: number } = {
'mainnet': 1,
'sepolia': 11155111,
'holesky': 17000,
'goerli': 5,
'xdai': 100,
'sokol': 77,
Expand Down

0 comments on commit 338c440

Please sign in to comment.