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

https for debug node
pull/7/head
yann300 5 years ago committed by GitHub
commit 2260e8faa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      remix-lib/src/execution/execution-context.js
  2. 7
      remix-lib/src/init.js

@ -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'
@ -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()

@ -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'
}

Loading…
Cancel
Save