Skip to content

Commit

Permalink
Add some Moonbeam endpoints (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor authored Dec 12, 2022
1 parent fb460f0 commit 8441add
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/src/chain_urls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ pub fn get_chain_urls(name: &str) -> Option<Vec<NodeEndpoint>> {
"wss://karura-rpc-1.aca-api.network:443",
"wss://karura-rpc-2.aca-api.network:443/ws",
]),
"moonbase" => Some(vec!["wss://wss.api.moonbase.moonbeam.network:443"]),
"moonriver" | "movr" => Some(vec!["wss://wss.api.moonriver.moonbeam.network:443"]),
"moonbeam" | "glmr" => Some(vec!["wss://wss.api.moonbeam.network:443"]),
"local" => Some(vec!["http://localhost:9933"]),
_ => None,
}
Expand Down

0 comments on commit 8441add

Please sign in to comment.