Solidity ======== .. image:: logo.svg :width: 120px :alt: Solidity logo :align: center Solidity is a contract-oriented, high-level language for implementing smart contracts. It was influenced by C++, Python and JavaScript and is designed to target the Ethereum Virtual Machine (EVM). Solidity is statically typed, supports inheritance, libraries and complex user-defined types among other features. As you will see, it is possible to create contracts for voting, crowdfunding, blind auctions, multi-signature wallets and more. .. note:: The best way to try out Solidity right now is using `Remix `_ (it can take a while to load, please be patient). Remix is a web browser based IDE that allows you to write Solidity smart contracts, then deploy and run the smart contracts. .. warning:: Since software is written by humans, it can have bugs. Thus, also smart contracts should be created following well-known best-practices in software development. This includes code review, testing, audits and correctness proofs. Also note that users are sometimes more confident in code than its authors. Finally, blockchains have their own things to watch out for, so please take a look at the section :ref:`security_considerations`. Translations ------------ This documentation is translated into several languages by community volunteers with varying degrees of completeness and up-to-dateness. The English version stands as a reference. * `Simplified Chinese `_ (in progress) * `Spanish `_ * `Russian `_ (rather outdated) * `Korean `_ (in progress) Useful links ------------ General ~~~~~~~ * `Ethereum `_ * `Changelog `_ * `Source Code `_ * `Ethereum Stackexchange `_ * `Language Users Chat `_ * `Compiler Developers Chat `_ Available Solidity Integrations ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Generic: * `Remix `_ Browser-based IDE with integrated compiler and Solidity runtime environment without server-side components. * `Solium `_ Linter to identify and fix style and security issues in Solidity. * `Solhint `_ Solidity linter that provides security, style guide and best practice rules for smart contract validation. * Atom: * `Etheratom `_ Plugin for the Atom editor that features syntax highlighting, compilation and a runtime environment (Backend node & VM compatible). * `Atom Solidity Linter `_ Plugin for the Atom editor that provides Solidity linting. * `Atom Solium Linter `_ Configurable Solidty linter for Atom using Solium as a base. * Eclipse: * `YAKINDU Solidity Tools `_ Eclipse based IDE. Features context sensitive code completion and help, code navigation, syntax coloring, built in compiler, quick fixes and templates. * Emacs: * `Emacs Solidity `_ Plugin for the Emacs editor providing syntax highlighting and compilation error reporting. * IntelliJ: * `IntelliJ IDEA plugin `_ Solidity plugin for IntelliJ IDEA (and all other JetBrains IDEs) * Sublime: * `Package for SublimeText — Solidity language syntax `_ Solidity syntax highlighting for SublimeText editor. * Vim: * `Vim Solidity `_ Plugin for the Vim editor providing syntax highlighting. * `Vim Syntastic `_ Plugin for the Vim editor providing compile checking. * Visual Studio Code: * `Visual Studio Code extension `_ Solidity plugin for Microsoft Visual Studio Code that includes syntax highlighting and the Solidity compiler. Discontinued: * `Mix IDE `_ Qt based IDE for designing, debugging and testing solidity smart contracts. * `Ethereum Studio `_ Specialized web IDE that also provides shell access to a complete Ethereum environment. * `Visual Studio Extension `_ Solidity plugin for Microsoft Visual Studio that includes the Solidity compiler. Solidity Tools ~~~~~~~~~~~~~~ * `Dapp `_ Build tool, package manager, and deployment assistant for Solidity. * `Solidity REPL `_ Try Solidity instantly with a command-line Solidity console. * `solgraph `_ Visualize Solidity control flow and highlight potential security vulnerabilities. * `Doxity `_ Documentation Generator for Solidity. * `evmdis `_ EVM Disassembler that performs static analysis on the bytecode to provide a higher level of abstraction than raw EVM operations. * `ABI to solidity interface converter `_ A script for generating contract interfaces from the ABI of a smart contract. * `Securify `_ Fully automated online static analyzer for smart contracts, providing a security report based on vulnerability patterns. * `Sūrya `_ Utility tool for smart contract systems, offering a number of visual outputs and information about the contracts' structure. Also supports querying the function call graph. * `EVM Lab `_ Rich tool package to interact with the EVM. Includes a VM, Etherchain API, and a trace-viewer with gas cost display. .. note:: Information like variable names, comments, and source code formatting is lost in the compilation process and it is not possible to completely recover the original source code. Decompiling smart contracts to view the original source code might not be possible, or the end result that useful. Third-Party Solidity Parsers and Grammars ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * `solidity-parser `_ Solidity parser for JavaScript * `Solidity Grammar for ANTLR 4 `_ Solidity grammar for the ANTLR 4 parser generator Language Documentation ---------------------- On the next pages, we will first see a :ref:`simple smart contract ` written in Solidity followed by the basics about :ref:`blockchains ` and the :ref:`Ethereum Virtual Machine `. The next section will explain several *features* of Solidity by giving useful :ref:`example contracts `. Remember that you can always try out the contracts `in your browser `_! The fourth and most extensive section will cover all aspects of Solidity in depth. If you still have questions, you can try searching or asking on the `Ethereum Stackexchange `_ site, or come to our `gitter channel `_. Ideas for improving Solidity or this documentation are always welcome! Contents ======== :ref:`Keyword Index `, :ref:`Search Page ` .. toctree:: :maxdepth: 2 introduction-to-smart-contracts.rst installing-solidity.rst solidity-by-example.rst solidity-in-depth.rst security-considerations.rst using-the-compiler.rst metadata.rst abi-spec.rst yul.rst style-guide.rst common-patterns.rst bugs.rst contributing.rst frequently-asked-questions.rst