Skip to content

Commit 7ee119b

Browse files
committed
Resolved conflicts after rebase
1 parent 8b2447b commit 7ee119b

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

ows/crates/ows-core/src/chain.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ pub const KNOWN_CHAINS: &[Chain] = &[
183183
chain_id: "nano:mainnet",
184184
},
185185
Chain {
186-
<<<<<<< HEAD
187186
name: "tempo",
188187
chain_type: ChainType::Evm,
189188
chain_id: "eip155:4217",
@@ -192,11 +191,11 @@ pub const KNOWN_CHAINS: &[Chain] = &[
192191
name: "hyperliquid",
193192
chain_type: ChainType::Evm,
194193
chain_id: "eip155:999",
195-
=======
194+
},
195+
Chain {
196196
name: "algorand",
197197
chain_type: ChainType::Avm,
198198
chain_id: "algorand:wGHE2Pwdvd7S12BL5FaOP20EGYesN73k",
199-
>>>>>>> 9659d24 (feat: add Algorand chain support)
200199
},
201200
];
202201

ows/crates/ows-core/src/config.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,14 @@ impl Config {
7474
"https://s.devnet.rippletest.net:51234".into(),
7575
);
7676
rpc.insert("nano:mainnet".into(), "https://rpc.nano.to".into());
77-
<<<<<<< HEAD
7877
rpc.insert("eip155:4217".into(), "https://rpc.tempo.xyz".into());
7978
rpc.insert(
8079
"eip155:999".into(),
8180
"https://rpc.hyperliquid.xyz/evm".into(),
82-
=======
81+
);
8382
rpc.insert(
8483
"avm:mainnet".into(),
8584
"https://mainnet-api.algonode.cloud".into(),
86-
>>>>>>> 9659d24 (feat: add Algorand chain support)
8785
);
8886
rpc
8987
}
@@ -270,11 +268,7 @@ mod tests {
270268
fn test_load_or_default_nonexistent() {
271269
let config = Config::load_or_default_from(std::path::Path::new("/nonexistent/config.json"));
272270
// Should have all default RPCs
273-
<<<<<<< HEAD
274-
assert_eq!(config.rpc.len(), 21);
275-
=======
276-
assert_eq!(config.rpc.len(), 20);
277-
>>>>>>> 9659d24 (feat: add Algorand chain support)
271+
assert_eq!(config.rpc.len(), 22);
278272
assert_eq!(config.rpc_url("eip155:1"), Some("https://eth.llamarpc.com"));
279273
}
280274

0 commit comments

Comments
 (0)