diff --git a/src/config/networks.ts b/src/config/networks.ts index d4ceb5879..5e0cbd1c7 100644 --- a/src/config/networks.ts +++ b/src/config/networks.ts @@ -95,8 +95,8 @@ const makeNetworkList = () => { }, }, namespace: '09573a3526818a8ecd6eb92f60f1175d', - subscanEndpoint: 'http://127.0.0.1:4399', - subscanUrl: 'https://creditcoin3-testnet.subscan.io/', + subscanEndpoint: 'https://subscan-cc3-devnet.creditcoin.network', + subscanUrl: 'https://creditcoin3-dev.subscan.io', }); } networks.creditcoinTest = makeCreditcoinNetwork({ @@ -109,8 +109,8 @@ const makeNetworkList = () => { }, }, namespace: '09573a3526818a8ecd6eb92f60f1175d', - subscanEndpoint: 'http://127.0.0.1:4399', - subscanUrl: 'https://creditcoin3-testnet.subscan.io/', + subscanEndpoint: 'https://subscan-cc3-testnet.creditcoin.network', + subscanUrl: 'https://creditcoin3-testnet.subscan.io', }); networks.creditcoin = makeCreditcoinNetwork({ name: 'creditcoin', @@ -123,7 +123,7 @@ const makeNetworkList = () => { }, namespace: 'creditcoin-mainnet', subscanEndpoint: 'http://127.0.0.1:4399', - subscanUrl: 'https://creditcoin3.subscan.io/', + subscanUrl: 'https://creditcoin3.subscan.io', }); if (import.meta.env.DEV) { networks.creditcoinLocal = makeCreditcoinNetwork({ @@ -136,7 +136,7 @@ const makeNetworkList = () => { }, }, subscanEndpoint: 'http://127.0.0.1:4399', - subscanUrl: 'https://creditcoin3-testnet.subscan.io/', + subscanUrl: 'https://creditcoin3-testnet.subscan.io', }); } return networks;