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

20 lines
1.0 KiB

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
After each compilation, a list is updated with all the newly compiled contracts.
`Details` modal dialog displays detailed information about the current selected contract.
From this tab, you can also publish your contract to Swarm (only non abstract contracts can be published).
Published data notably contains the ``abi`` and solidity source code.
After a contract is published, you can find its metadata information using the `bzz` URL located in the details modal dialog ``SWARM LOCATION``.
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.
(see :doc:`../analysis_tab`)