Skip to content

Commit 58f539f

Browse files
authored
change network to bitvm signet (BitVM#228)
1 parent ea3dc34 commit 58f539f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bridge/src/client/esplora.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ use bitcoin::Network;
33
const REGTEST_ESPLORA_URL: &str = "http://localhost:8094/regtest/api/";
44
// This endpoint accepts non-standard transactions.
55
const ALPEN_SIGNET_ESPLORA_URL: &str = "https://esplora-large.devnet-annapurna.stratabtc.org";
6+
const BITVM_SIGNET_ESPLORA_URL: &str = "https://esplora.bitvmnet.org";
67

78
// TODO: Needs to be updated for production environment.
89
pub fn get_esplora_url(network: Network) -> &'static str {
910
match network {
1011
Network::Regtest => REGTEST_ESPLORA_URL,
11-
_ => ALPEN_SIGNET_ESPLORA_URL,
12+
_ => BITVM_SIGNET_ESPLORA_URL,
1213
}
1314
}

0 commit comments

Comments
 (0)