File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -217,10 +217,12 @@ sol! {
217
217
"src/abi/LidoNORegistry.json"
218
218
}
219
219
220
+ // Fetching Lido Curated Module
220
221
fn lido_registry_address ( chain : Chain ) -> eyre:: Result < Address > {
221
222
match chain {
222
223
Chain :: Mainnet => Ok ( address ! ( "55032650b14df07b85bF18A3a3eC8E0Af2e028d5" ) ) ,
223
224
Chain :: Holesky => Ok ( address ! ( "595F64Ddc3856a3b5Ff4f4CC1d1fb4B46cFd2bAC" ) ) ,
225
+ Chain :: Hoodi => Ok ( address ! ( "5cDbE1590c083b5A2A64427fAA63A7cfDB91FbB5" ) ) ,
224
226
Chain :: Sepolia => Ok ( address ! ( "33d6E15047E8644F8DDf5CD05d202dfE587DA6E3" ) ) ,
225
227
_ => bail ! ( "Lido registry not supported for chain: {chain:?}" ) ,
226
228
}
@@ -290,6 +292,7 @@ async fn fetch_ssv_pubkeys(
290
292
let chain_name = match chain {
291
293
Chain :: Mainnet => "mainnet" ,
292
294
Chain :: Holesky => "holesky" ,
295
+ Chain :: Hoodi => "hoodi" ,
293
296
_ => bail ! ( "SSV network is not supported for chain: {chain:?}" ) ,
294
297
} ;
295
298
You can’t perform that action at this time.
0 commit comments