Solidity, the Smart Contract Programming Language
Go to file
Daniel Kirchner 953bc9fed2
Merge pull request #12983 from ethereum/hint-via-ir
Recommend `via-ir` whenever a stack too deep error is encountered.
2022-05-20 12:26:25 +02:00
.circleci Remove obsolete enforce-via-yul logic and CI run. 2022-05-19 20:23:28 +02:00
.github
cmake Merge pull request #12702 from ethereum/ninja-build-fix 2022-04-04 13:11:28 +02:00
docs Set release date. 2022-05-17 13:50:26 +02:00
libevmasm Merge pull request #12983 from ethereum/hint-via-ir 2022-05-20 12:26:25 +02:00
liblangutil Reorder member variables of unique error reporter to ensure proper initialization order. 2022-05-11 13:40:02 +02:00
libsmtutil Support new z3 AST node 2022-05-12 10:50:30 +02:00
libsolc [CMake] Refactor libsolc linker flag for EXPORTED_FUNCTIONS and make it more readable. 2022-03-09 13:03:23 +01:00
libsolidity Merge pull request #12983 from ethereum/hint-via-ir 2022-05-20 12:26:25 +02:00
libsolutil Merge pull request #12983 from ethereum/hint-via-ir 2022-05-20 12:26:25 +02:00
libyul Recommend via-ir whenever a stack too deep error is encountered. 2022-05-05 19:22:03 +02:00
scripts Update docker images for new z3 version. 2022-05-13 17:46:42 +02:00
snap
solc Always allow full filesystem access to LSP. 2022-05-09 11:37:11 +02:00
test Merge pull request #12983 from ethereum/hint-via-ir 2022-05-20 12:26:25 +02:00
tools More strict override check for data locations. 2022-05-17 13:02:12 +02:00
.clang-format
.dockerignore
.editorconfig
.gitattributes
.gitignore Add .DS_Store and Thumbs.db to .gitignore 2022-04-08 20:24:27 +02:00
Changelog.md LSP: Implement semantic tokens 2022-05-18 14:54:16 +02:00
CMakeLists.txt Set version to 0.8.15. 2022-05-17 18:03:53 +02:00
CODE_OF_CONDUCT.md
codecov.yml
CODING_STYLE.md
CONTRIBUTING.md
LICENSE.txt
README.md
ReleaseChecklist.md CI: Add c_release_binaries job that gathers release binaries from individual jobs 2022-05-12 21:41:44 +02:00
SECURITY.md

The Solidity Contract-Oriented Programming Language

Matrix Chat Gitter Chat Solidity Forum Twitter Follow Mastodon Follow

You can talk to us on Gitter and Matrix, tweet at us on Twitter or create a new topic in the Solidity forum. Questions, feedback, and suggestions are welcome!

Solidity is a statically typed, contract-oriented, high-level language for implementing smart contracts on the Ethereum platform.

For a good overview and starting point, please check out the official Solidity Language Portal.

Table of Contents

Background

Solidity is a statically-typed curly-braces programming language designed for developing smart contracts that run on the Ethereum Virtual Machine. Smart contracts are programs that are executed inside a peer-to-peer network where nobody has special authority over the execution, and thus they allow to implement tokens of value, ownership, voting, and other kinds of logic.

When deploying contracts, you should use the latest released version of Solidity. This is because breaking changes, as well as new features and bug fixes are introduced regularly. We currently use a 0.x version number to indicate this fast pace of change.

Build and Install

Instructions about how to build and install the Solidity compiler can be found in the Solidity documentation.

Example

A "Hello World" program in Solidity is of even less use than in other languages, but still:

// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;

contract HelloWorld {
    function helloWorld() external pure returns (string memory) {
        return "Hello, World!";
    }
}

To get started with Solidity, you can use Remix, which is a browser-based IDE. Here are some example contracts:

  1. Voting
  2. Blind Auction
  3. Safe remote purchase
  4. Micropayment Channel

Documentation

The Solidity documentation is hosted at Read the docs.

Development

Solidity is still under development. Contributions are always welcome! Please follow the Developers Guide if you want to help.

You can find our current feature and bug priorities for forthcoming releases in the projects section.

Maintainers

License

Solidity is licensed under GNU General Public License v3.0.

Some third-party code has its own licensing terms.

Security

The security policy may be found here.