Skip to content

Commit 240eb6a

Browse files
committed
feat: agg mode add support for hoodi network
1 parent 0dbdae5 commit 240eb6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

aggregation_mode/sdk/src/types.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use std::str::FromStr;
33
#[derive(Debug, Clone)]
44
pub enum Network {
55
Devnet,
6+
Hoodi,
67
}
78

89
#[derive(Debug, Clone)]
@@ -24,12 +25,14 @@ impl Network {
2425
pub fn chain_id(&self) -> u64 {
2526
match self {
2627
Self::Devnet => 31_337,
28+
Self::Hoodi => 56_0048,
2729
}
2830
}
2931

3032
pub fn gateway_url(&self) -> String {
3133
match self {
3234
Self::Devnet => "http://127.0.0.1:8089".to_string(),
35+
Self::Hoodi => "http://hoodi.gateway.alignedlayer.com:8080".to_string(),
3336
}
3437
}
3538
}

0 commit comments

Comments
 (0)