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..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://ethereum.github.io/solc-bin/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" },