File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ export function getNetworkDencunForkSlot(
8
8
return 8626176 ;
9
9
case "holesky" :
10
10
return 950272 ;
11
+ case "hoodi" :
12
+ return 0 ;
11
13
case "sepolia" :
12
14
return 4243456 ;
13
15
case "gnosis" :
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ export function getChainIdByName(chainName: string): number | undefined {
9
9
return 1 ;
10
10
case "holesky" :
11
11
return 17000 ;
12
+ case "hoodi" :
13
+ return 560048 ;
12
14
case "sepolia" :
13
15
return 11155111 ;
14
16
case "gnosis" :
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ const blobStorageSchema = z.enum([
22
22
const networkSchema = z . enum ( [
23
23
"mainnet" ,
24
24
"holesky" ,
25
+ "hoodi" ,
25
26
"sepolia" ,
26
27
"gnosis" ,
27
28
"chiado" ,
Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ export const ADDRESS_TO_ROLLUP_MAPPINGS: Map<
116
116
] ,
117
117
// Gnosis
118
118
[ 100 , new Map ( ) ] ,
119
+ // Hoodi
120
+ [ 560048 , new Map ( ) ] ,
119
121
] ) ;
120
122
121
123
export const ROLLUP_TO_ADDRESSES_MAPPINGS = new Map (
You can’t perform that action at this time.
0 commit comments