From e4dafa3f91fd04395dbe615c17f960549e4aa440 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 20 Mar 2018 12:09:33 +0100 Subject: [PATCH 1/2] fix loading compiler --- README.md | 2 +- remix-solidity/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2d4561903..7c85bc288e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Ethereum tools for the web. ## What is Remix? -**Remix** is a suite of tools to interact with the Ethereum blockchain in order to debug transactions, stored in this Git repository. A Remix transaction Web debugger is available [here](http://ethereum.github.io/remix), and its source code is part of this repository. +**Remix** is a suite of tools to interact with the Ethereum blockchain in order to debug transactions, stored in this Git repository. A Remix transaction Web debugger is available [here](http://remix.ethereum.org), and its source code is part of this repository. The **Remix IDE** is an IDE for Solidity dApp developers, powered by Remix. The Remix IDE repository **is available [here](https://github.com/ethereum/remix-ide)**, and an online version is available at https://remix.ethereum.org. diff --git a/remix-solidity/package.json b/remix-solidity/package.json index f62e4cf5bb..f96a3f2ef8 100644 --- a/remix-solidity/package.json +++ b/remix-solidity/package.json @@ -31,7 +31,7 @@ }, "scripts": { "test": "standard && npm run downloadsolc && tape ./test/tests.js", - "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget https://ethereum.github.io/solc-bin/soljson.js) && cd ..", + "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget https://solc-bin.ethereum.org/soljson.js) && cd ..", "prepublish": "mkdirp build; npm-run-all -ls downloadsolc", "postinstall": "npm-run-all -ls downloadsolc" }, From 2dfd024d304c47de209d899d4269ef6176a4737b Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 20 Mar 2018 12:16:21 +0100 Subject: [PATCH 2/2] Update package.json --- remix-solidity/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-solidity/package.json b/remix-solidity/package.json index f96a3f2ef8..9b75cad3d1 100644 --- a/remix-solidity/package.json +++ b/remix-solidity/package.json @@ -31,7 +31,7 @@ }, "scripts": { "test": "standard && npm run downloadsolc && tape ./test/tests.js", - "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget https://solc-bin.ethereum.org/soljson.js) && cd ..", + "downloadsolc": "cd node_modules/solc && (test -e soljson.js || wget --no-check-certificate https://solc-bin.ethereum.org/soljson.js) && cd ..", "prepublish": "mkdirp build; npm-run-all -ls downloadsolc", "postinstall": "npm-run-all -ls downloadsolc" },