From 950b92ad5d61342075fff36719d74ab274dd372b Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Thu, 23 Oct 2025 10:53:10 -0700 Subject: [PATCH] feat: update Litecoin explorer URL Update the Litecoin mainnet explorer URL to use litecoinspace.org instead of blockchair.com. Ticket: BTC-2693 TICKET: BTC-2693 --- modules/statics/src/networks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index da6981c0fc..4bbe11fecc 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -724,7 +724,7 @@ class Litecoin extends Mainnet implements UtxoNetwork { name = 'Litecoin'; family = CoinFamily.LTC; utxolibName = 'litecoin'; - explorerUrl = 'https://blockchair.com/litecoin/transaction/'; + explorerUrl = 'https://litecoinspace.org/tx/'; } class LitecoinTestnet extends Testnet implements UtxoNetwork {