Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand All @@ -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
Expand Down