Skip to content
This repository has been archived by the owner on Mar 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1285 from ethereum/yann300-patch-28
Browse files Browse the repository at this point in the history
https for debug node
  • Loading branch information
yann300 authored Sep 10, 2019
2 parents a57aa65 + b1d22f4 commit 2260e8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions remix-lib/src/execution/execution-context.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,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'

Expand Down Expand Up @@ -322,7 +322,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()
7 changes: 4 additions & 3 deletions remix-lib/src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

0 comments on commit 2260e8f

Please sign in to comment.