aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-10-14 18:02:52 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-10-19 21:02:50 +0800
commit4d4b9bc68e9b6babbb5f747ae579d41375dd4f20 (patch)
treec30e1201e08985cce3b1f98617aa88dd5cee4c56 /docs
parentc41effd7c838b7925dc3ccc169e62be9be7af0e2 (diff)
downloaddexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar.gz
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar.bz2
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar.lz
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar.xz
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.tar.zst
dexon-solidity-4d4b9bc68e9b6babbb5f747ae579d41375dd4f20.zip
FAQ: remove compilation section
Diffstat (limited to 'docs')
-rw-r--r--docs/frequently-asked-questions.rst13
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index 489ad456..e22ef332 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -20,22 +20,9 @@ favour of Solidity is that it is statically typed and offers many
advanced features like inheritance, libraries, complex
user-defined types and a bytecode optimizer.
-Solidity contracts can be compiled a few different ways (see below) and the
-resulting output can be cut/pasted into a geth console to deploy them to the
-Ethereum blockchain.
-
There are some `contract examples <https://github.com/fivedogit/solidity-baby-steps/tree/master/contracts/>`_ by fivedogit and
there should be a `test contract <https://github.com/ethereum/solidity/blob/develop/test/libsolidity/SolidityEndToEndTest.cpp>`_ for every single feature of Solidity.
-How do I compile contracts?
-===========================
-
-Probably the fastest way is the `online compiler <https://ethereum.github.io/browser-solidity/>`_.
-
-You can also use the ``solc`` binary which comes with cpp-ethereum to compile
-contracts or an emerging option is to use Mix, the IDE.
-
-
Create and publish the most basic contract possible
===================================================