From a9963acbf118c15be4b93b5ef46a88b54cccbf2b Mon Sep 17 00:00:00 2001 From: Yash Rohatgi Date: Mon, 19 Jun 2023 15:18:42 -0400 Subject: [PATCH] fix(statics): update XTZ/TXTZ block explorer Ticket: CE-286 --- modules/statics/src/networks.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 26b9a0742e..de53746a95 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -712,15 +712,13 @@ class XrpTestnet extends Testnet implements AccountNetwork { class Xtz extends Mainnet implements AccountNetwork { name = 'Xtz'; family = CoinFamily.XTZ; - explorerUrl = 'https://tezblock.io/transaction/'; - accountExplorerUrl = 'https://tezblock.io/account/'; + explorerUrl = 'https://tzstats.com/'; } class XtzTestnet extends Testnet implements AccountNetwork { name = 'XtzTestnet'; family = CoinFamily.XTZ; - explorerUrl = 'https://carthagenet.tezblock.io/transaction/'; - accountExplorerUrl = 'https://carthagenet.tezblock.io/account/'; + explorerUrl = 'https://mumbai.tzstats.com/'; } class ZCash extends Mainnet implements UtxoNetwork {