We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3dc34 commit 58f539fCopy full SHA for 58f539f
bridge/src/client/esplora.rs
@@ -3,11 +3,12 @@ use bitcoin::Network;
3
const REGTEST_ESPLORA_URL: &str = "http://localhost:8094/regtest/api/";
4
// This endpoint accepts non-standard transactions.
5
const ALPEN_SIGNET_ESPLORA_URL: &str = "https://esplora-large.devnet-annapurna.stratabtc.org";
6
+const BITVM_SIGNET_ESPLORA_URL: &str = "https://esplora.bitvmnet.org";
7
8
// TODO: Needs to be updated for production environment.
9
pub fn get_esplora_url(network: Network) -> &'static str {
10
match network {
11
Network::Regtest => REGTEST_ESPLORA_URL,
- _ => ALPEN_SIGNET_ESPLORA_URL,
12
+ _ => BITVM_SIGNET_ESPLORA_URL,
13
}
14
0 commit comments