From d1d33d26256bafbbf6a0b59becfc65d76cf5a506 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 5 Sep 2019 17:46:20 +0200 Subject: [PATCH] https for debug node --- remix-lib/src/execution/execution-context.js | 5 +++-- remix-lib/src/init.js | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/remix-lib/src/execution/execution-context.js b/remix-lib/src/execution/execution-context.js index ce6beeb89d..837afa78a3 100644 --- a/remix-lib/src/execution/execution-context.js +++ b/remix-lib/src/execution/execution-context.js @@ -151,7 +151,7 @@ function ExecutionContext () { else if (id === '2') name = 'Morden (deprecated)' else if (id === '3') name = 'Ropsten' else if (id === '4') name = 'Rinkeby' - else if (id === '5') name = 'Görli' + else if (id === '5') name = 'Goerli' else if (id === '42') name = 'Kovan' else name = 'Custom' @@ -313,7 +313,8 @@ var transactionDetailsLinks = { 'Main': 'https://www.etherscan.io/tx/', 'Rinkeby': 'https://rinkeby.etherscan.io/tx/', 'Ropsten': 'https://ropsten.etherscan.io/tx/', - 'Kovan': 'https://kovan.etherscan.io/tx/' + 'Kovan': 'https://kovan.etherscan.io/tx/', + 'Goerli': 'https://goerli.etherscan.io/tx/' } module.exports = new ExecutionContext() diff --git a/remix-lib/src/init.js b/remix-lib/src/init.js index 32261870d6..7f19782672 100644 --- a/remix-lib/src/init.js +++ b/remix-lib/src/init.js @@ -69,7 +69,8 @@ module.exports = { var web3DebugNodes = { 'Main': 'https://mainnet.infura.io/remix', - 'Rinkeby': 'http://52.56.126.137:8545', - 'Ropsten': 'http://35.178.125.92:8545', - 'Kovan': 'http://35.176.227.86:8545' + 'Rinkeby': 'https://remix-rinkeby.ethdevops.io', + 'Ropsten': 'https://remix-ropsten.ethdevops.io', + 'Goerli': 'https://remix-goerli.ethdevops.io', + 'Kovan': 'https://remix-kovan.ethdevops.io' }