Skip to content

Commit

Permalink
chore: remote itn2 networks
Browse files Browse the repository at this point in the history
  • Loading branch information
helder-moreira committed Oct 1, 2023
1 parent d833edf commit 46135f2
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/store/chains/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand All @@ -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) => {
Expand Down

0 comments on commit 46135f2

Please sign in to comment.