Skip to content

Commit 39c40a4

Browse files
feat: use mempool.space endpoint for esplora client
1 parent 0c082ce commit 39c40a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/bitcoindevkit/devkitwallet/domain/BlockchainClientsConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class BlockchainClientsConfig {
4141
val config = BlockchainClientsConfig()
4242
when (network) {
4343
Network.REGTEST -> config.addClient(EsploraClient("http://10.0.2.2:3002"), true)
44-
Network.SIGNET -> config.addClient(EsploraClient("http://signet.bitcoindevkit.net"), true)
44+
Network.SIGNET -> config.addClient(EsploraClient("https://blockstream.info/signet/api/"), true)
4545
Network.TESTNET -> config.addClient(EsploraClient("https://blockstream.info/testnet/api/"), true)
4646
Network.TESTNET4 -> config.addClient(EsploraClient("https://mempool.space/testnet4/api/"), true)
4747
Network.BITCOIN -> throw IllegalArgumentException("This app does not support mainnet")

0 commit comments

Comments
 (0)