From 32ae883f7c9eeeb3c34ec33bc0b04d22c649c1f3 Mon Sep 17 00:00:00 2001 From: David Kaplan Date: Thu, 8 Jan 2026 13:12:39 -0500 Subject: [PATCH] chore(statics): update url for zec BTC-0 TICKET: BTC-0 --- modules/statics/src/networks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/statics/src/networks.ts b/modules/statics/src/networks.ts index 581902e330..94cea84813 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -1212,14 +1212,14 @@ class ZCash extends Mainnet implements UtxoNetwork { name = 'ZCash'; family = CoinFamily.ZEC; utxolibName = 'zcash'; - explorerUrl = 'https://chain.so/tx/ZEC/'; + explorerUrl = 'https://mainnet.zcashexplorer.app/transactions/'; } class ZCashTestnet extends Testnet implements UtxoNetwork { name = 'ZCashTestnet'; family = CoinFamily.ZEC; utxolibName = 'zcashTest'; - explorerUrl = 'https://chain.so/tx/ZECTEST/'; + explorerUrl = 'https://testnet.zcashexplorer.app/transactions/'; } class Near extends Mainnet implements AccountNetwork {