Skip to content

Commit 1c35825

Browse files
authored
Merge pull request #8097 from BitGo/win-8039-explorer-url-change
fix: fixed the url for the txn explorer
2 parents 168e035 + d7e276d commit 1c35825

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

modules/statics/src/networks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2358,7 +2358,7 @@ class DogeosTestnet extends Testnet implements EthereumNetwork {
23582358
class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
23592359
name = 'USDC (ARC) Testnet';
23602360
family = CoinFamily.ARCUSDC;
2361-
explorerUrl = 'https://testnet.arcscan.app/txs/';
2361+
explorerUrl = 'https://testnet.arcscan.app/tx/';
23622362
accountExplorerUrl = 'https://testnet.arcscan.app/address/';
23632363
chainId = 5042002;
23642364
nativeCoinOperationHashPrefix = '5042002';
@@ -2367,7 +2367,7 @@ class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
23672367
class ArcUSDC extends Mainnet implements EthereumNetwork {
23682368
name = 'USDC (ARC)';
23692369
family = CoinFamily.ARCUSDC;
2370-
explorerUrl = 'https://testnet.arcscan.app/txs/'; // change to prod explorer url
2370+
explorerUrl = 'https://testnet.arcscan.app/tx/'; // WIN-8844 change to prod explorer url
23712371
accountExplorerUrl = 'https://testnet.arcscan.app/address/'; // change to prod explorer url when available
23722372
chainId = 5042002; // change to prod chain id when available
23732373
nativeCoinOperationHashPrefix = '5042002'; // change to prod native coin operation hash prefix when available

0 commit comments

Comments
 (0)