From bd38de95e972d62b99fcd1f5d6c79955545d5cb9 Mon Sep 17 00:00:00 2001 From: Alex Hu Date: Fri, 19 Jan 2024 13:33:57 -0500 Subject: [PATCH] fix: update urls for XTZ and TXTZ explorers Ticket: WP-1240 --- modules/statics/src/networks.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 033c7e86b6..14d4a25ce2 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -848,12 +848,14 @@ class Xtz extends Mainnet implements AccountNetwork { name = 'Xtz'; family = CoinFamily.XTZ; explorerUrl = 'https://tzstats.com/'; + accountExplorerUrl = 'https://tzstats.com/'; } class XtzTestnet extends Testnet implements AccountNetwork { name = 'XtzTestnet'; family = CoinFamily.XTZ; - explorerUrl = 'https://mumbai.tzstats.com/'; + explorerUrl = 'https://ghostnet.tzkt.io/'; + accountExplorerUrl = 'https://ghostnet.tzkt.io/'; } class ZCash extends Mainnet implements UtxoNetwork {