remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/docs_old/compile_tab.rst

21 lines
1.0 KiB

7 years ago
Compiling contracts
===================
By default Remix triggers a compilation each time the current file is changed or another file is selected.
If the contract has a lot of dependencies and takes a long time to compile, it is possible to disable the `autocompilation`.
.. image:: images/remix_compiletab.png
7 years ago
After each compilation, a list is updated with all the newly compiled contracts.
`Details` modal dialog displays detailed information about the current selected contract.
7 years ago
From this tab, you can also publish your contract to Swarm (only non abstract contracts can be published).
7 years ago
Published data notably contains the ``abi`` and solidity source code.
7 years ago
After a contract is published, you can find its metadata information using the `bzz` URL located in the details modal dialog ``SWARM LOCATION``.
7 years ago
Compilation Errors and Warning are displayed below the contract section. At each compilation, the static analysis tab builds a report. It is very valuable when addressing reported issues even if the compiler doesn't complain.
7 years ago
(see :doc:`../analysis_tab`)