Skip to content

Commit

Permalink
Backend/BlockExplorer: new mempool-based LTC explorer
Browse files Browse the repository at this point in the history
Mempool is the best explorer so far, and finally someone
ported it to work with Litecoin.
  • Loading branch information
knocte committed Jan 8, 2024
1 parent 2abf306 commit c9e58df
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/GWallet.Backend/BlockExplorer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand All @@ -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 ->
Expand Down

0 comments on commit c9e58df

Please sign in to comment.