From d7e276deca8925f1095323c7dd00f44ec0f105bf Mon Sep 17 00:00:00 2001 From: Shobhit B Date: Tue, 10 Feb 2026 20:28:43 +0530 Subject: [PATCH] fix: fixed the url for the tx explorere TICKET: WIN-8039 --- 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 d5b5683939..9770af0d87 100644 --- a/modules/statics/src/networks.ts +++ b/modules/statics/src/networks.ts @@ -2358,7 +2358,7 @@ class DogeosTestnet extends Testnet implements EthereumNetwork { class ArcUSDCTestnet extends Testnet implements EthereumNetwork { name = 'USDC (ARC) Testnet'; family = CoinFamily.ARCUSDC; - explorerUrl = 'https://testnet.arcscan.app/txs/'; + explorerUrl = 'https://testnet.arcscan.app/tx/'; accountExplorerUrl = 'https://testnet.arcscan.app/address/'; chainId = 5042002; nativeCoinOperationHashPrefix = '5042002'; @@ -2367,7 +2367,7 @@ class ArcUSDCTestnet extends Testnet implements EthereumNetwork { class ArcUSDC extends Mainnet implements EthereumNetwork { name = 'USDC (ARC)'; family = CoinFamily.ARCUSDC; - explorerUrl = 'https://testnet.arcscan.app/txs/'; // change to prod explorer url + explorerUrl = 'https://testnet.arcscan.app/tx/'; // WIN-8844 change to prod explorer url accountExplorerUrl = 'https://testnet.arcscan.app/address/'; // change to prod explorer url when available chainId = 5042002; // change to prod chain id when available nativeCoinOperationHashPrefix = '5042002'; // change to prod native coin operation hash prefix when available