From c9e58df41919754ca22162f3a779bc0070cb98ca Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 8 Jan 2024 11:06:23 +0800 Subject: [PATCH] Backend/BlockExplorer: new mempool-based LTC explorer Mempool is the best explorer so far, and finally someone ported it to work with Litecoin. --- src/GWallet.Backend/BlockExplorer.fs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/GWallet.Backend/BlockExplorer.fs b/src/GWallet.Backend/BlockExplorer.fs index 81fd08b97..9f63decf4 100644 --- a/src/GWallet.Backend/BlockExplorer.fs +++ b/src/GWallet.Backend/BlockExplorer.fs @@ -14,8 +14,7 @@ module BlockExplorer = | Currency.BTC -> "https://mempool.space/address/" | Currency.LTC -> - // because the more popular https://live.blockcypher.com/ltc/ doesn't seem to have segwit support - "https://chainz.cryptoid.info/ltc/address.dws?" + "https://litecoinspace.org/address/" | Currency.ETH -> // most popular one... "https://etherscan.io/address/" @@ -32,7 +31,7 @@ module BlockExplorer = | Currency.BTC -> "https://mempool.space/tx/" | Currency.LTC -> - "https://chainz.cryptoid.info/ltc/tx.dws?" + "https://litecoinspace.org/tx/" | Currency.ETH -> "https://etherscan.io/tx/" | Currency.ETC ->