Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.

Update contracts.rst to point at Remix. #457

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions source/contracts-and-transactions/contracts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Solidity
Solidity is a language similar to JavaScript which allows you to develop contracts and compile to EVM bytecode. It is currently the flagship language of Ethereum and the most popular.

* `Solidity Documentation <http://solidity.readthedocs.org/en/latest/>`_ - Solidity is the flagship Ethereum high level language that is used to write contracts.
* `Solidity online realtime compiler <http://ethereum.github.io/browser-solidity/>`_
* `Solidity online realtime compiler <https://remix.ethereum.org/>`_
* `Standardized Contract APIs <https://github.com/ethereum/wiki/wiki/Standardized_Contract_APIs>`__
* `Useful Ðapp Patterns <https://github.com/ethereum/wiki/wiki/Useful-Ðapp-Patterns>`__ - Code snippets which are useful for Ðapp development.

Expand Down Expand Up @@ -92,7 +92,7 @@ mechanisms.
* Using ``web3.eth.compile.solidity`` in the javascript console provided by
``geth`` or ``eth`` (This still requires the ``solc`` compiler to be
installed).
* The `online Solidity realtime compiler <https://ethereum.github.io/browser-solidity/>`_.
* The `Remix <https://remix.ethereum.org/>`_ online Solidity compiler.
* The `Meteor dapp Cosmo for building solidity contracts <https://github.com/SilentCicero/meteor-dapp-cosmo>`_.
* The `Mix IDE <https://github.com/ethereum/wiki/wiki/Mix:-The-DApp-IDE>`_.
* The `Ethereum Wallet <https://github.com/ethereum/mist/releases>`_.
Expand Down Expand Up @@ -268,8 +268,8 @@ well as some funds.
You will now create a contract on the blockchain by `sending a transaction <https://github.com/ethereum/wiki/wiki/JavaScript-API#web3ethsendtransaction>`__ to the empty address with the EVM code from the previous section as data.

.. note::
This can be accomplished much easier using the `online Solidity realtime
compiler <https://ethereum.github.io/browser-solidity/>`_ or the `Mix IDE
This can be accomplished much easier using the `Remix online Solidity
compiler <https://remix.ethereum.org/>`_ or the `Mix IDE
<https://github.com/ethereum/wiki/wiki/Mix:-The-DApp-IDE>`_ program.


Expand Down