Unverified Commit 2260e8fa authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1285 from ethereum/yann300-patch-28

https for debug node
parents a57aa65a b1d22f43
...@@ -155,7 +155,7 @@ function ExecutionContext () { ...@@ -155,7 +155,7 @@ function ExecutionContext () {
else if (id === '2') name = 'Morden (deprecated)' else if (id === '2') name = 'Morden (deprecated)'
else if (id === '3') name = 'Ropsten' else if (id === '3') name = 'Ropsten'
else if (id === '4') name = 'Rinkeby' 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 if (id === '42') name = 'Kovan'
else name = 'Custom' else name = 'Custom'
...@@ -322,7 +322,8 @@ var transactionDetailsLinks = { ...@@ -322,7 +322,8 @@ var transactionDetailsLinks = {
'Main': 'https://www.etherscan.io/tx/', 'Main': 'https://www.etherscan.io/tx/',
'Rinkeby': 'https://rinkeby.etherscan.io/tx/', 'Rinkeby': 'https://rinkeby.etherscan.io/tx/',
'Ropsten': 'https://ropsten.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() module.exports = new ExecutionContext()
...@@ -69,7 +69,8 @@ module.exports = { ...@@ -69,7 +69,8 @@ module.exports = {
var web3DebugNodes = { var web3DebugNodes = {
'Main': 'https://mainnet.infura.io/remix', 'Main': 'https://mainnet.infura.io/remix',
'Rinkeby': 'http://52.56.126.137:8545', 'Rinkeby': 'https://remix-rinkeby.ethdevops.io',
'Ropsten': 'http://35.178.125.92:8545', 'Ropsten': 'https://remix-ropsten.ethdevops.io',
'Kovan': 'http://35.176.227.86:8545' 'Goerli': 'https://remix-goerli.ethdevops.io',
'Kovan': 'https://remix-kovan.ethdevops.io'
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment