diff --git a/src/store/chains/index.js b/src/store/chains/index.js index 9a1cb4e291..9906ee3796 100644 --- a/src/store/chains/index.js +++ b/src/store/chains/index.js @@ -15,7 +15,6 @@ const configs = [] const PLAYGROUND_NETWORKS = 'https://networks.play.nibiru.fi/ping-pub' const DEV_NETWORKS = 'https://networks.testnet.nibiru.fi/ping-pub' const ITN_NETWORKS = 'https://networks.itn.nibiru.fi/ping-pub' -const ITN2_NETWORKS = 'https://networks.itn2.nibiru.fi/ping-pub' try { const testnets = await fetch(ITN_NETWORKS).then(response => response.json()) @@ -27,16 +26,6 @@ try { console.log(error) } -try { - const testnets = await fetch(ITN2_NETWORKS).then(response => response.json()) - testnets.forEach((_, i) => { - testnets[i].visible = true - }) - configs.push(...testnets) -} catch (error) { - console.log(error) -} - try { const devnets = await fetch(DEV_NETWORKS).then(response => response.json()) devnets.forEach((_, i) => {