From 0a74907dfd01e8fcee988471f801840c24b93d92 Mon Sep 17 00:00:00 2001 From: Hrishikesh Jain Date: Mon, 23 Feb 2026 20:18:18 +0530 Subject: [PATCH] feat(statics): update Canton explorer URL to lighthouse.cantonloop.com ccview.io does not support Canton token transactions (private transfers). Migrate mainnet and devnet explorer URLs to lighthouse.cantonloop.com. TICKET: CHALO-192 Co-authored-by: Cursor --- 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 3a7a854f68..654631540a 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -2400,13 +2400,13 @@ class PlumeTestnet extends Testnet implements EthereumNetwork { class Canton extends Mainnet implements BaseNetwork { name = 'Canton'; family = CoinFamily.CANTON; - explorerUrl = 'https://ccview.io/updates/'; + explorerUrl = 'https://lighthouse.cantonloop.com/transactions/'; } class CantonTestnet extends Testnet implements BaseNetwork { name = 'CantonTestnet'; family = CoinFamily.CANTON; - explorerUrl = 'https://devnet.ccview.io/updates/'; + explorerUrl = 'https://lighthouse.devnet.cantonloop.com/transactions/'; } class Dogeos extends Mainnet implements EthereumNetwork {