We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dbdae5 commit 240eb6aCopy full SHA for 240eb6a
aggregation_mode/sdk/src/types.rs
@@ -3,6 +3,7 @@ use std::str::FromStr;
3
#[derive(Debug, Clone)]
4
pub enum Network {
5
Devnet,
6
+ Hoodi,
7
}
8
9
@@ -24,12 +25,14 @@ impl Network {
24
25
pub fn chain_id(&self) -> u64 {
26
match self {
27
Self::Devnet => 31_337,
28
+ Self::Hoodi => 56_0048,
29
30
31
32
pub fn gateway_url(&self) -> String {
33
34
Self::Devnet => "http://127.0.0.1:8089".to_string(),
35
+ Self::Hoodi => "http://hoodi.gateway.alignedlayer.com:8080".to_string(),
36
37
38
0 commit comments