Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion modules/sdk-core/src/bitgo/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ const mainnetBase: EnvironmentTemplate = {
baseUrl: 'https://blockscout.testnet.dogeos.com', //TODO: WIN-8082 => add mainnet url when available
},
arcusdc: {
baseUrl: 'https://testnet.arcscan.app/api', // WIN-8844 => add mainnet url when available
baseUrl: 'https://explorer.arc.io/api', // WIN-8844 => add mainnet url when available
},
xdc: {
baseUrl: 'https://api.etherscan.io/v2',
Expand Down
1 change: 1 addition & 0 deletions modules/statics/src/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ export class CoinMap {
1952: 'tokbxlayer',
5734951: 'jovayeth',
2019775: 'tjovayeth',
5042: 'arcusdc',
5042002: 'tarcusdc',
4217: 'tempo',
42431: 'ttempo',
Expand Down
8 changes: 4 additions & 4 deletions modules/statics/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2685,10 +2685,10 @@ class ArcUSDCTestnet extends Testnet implements EthereumNetwork {
class ArcUSDC extends Mainnet implements EthereumNetwork {
name = 'USDC (ARC)';
family = CoinFamily.ARCUSDC;
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
explorerUrl = 'https://explorer.arc.io/tx/'; // WIN-8844 change to prod explorer url
accountExplorerUrl = 'https://explorer.arc.io/address/'; // change to prod explorer url when available
chainId = 5042;
nativeCoinOperationHashPrefix = '5042';
}

class Tempo extends Mainnet implements EthereumNetwork {
Expand Down
Loading