Solidity, the Smart Contract Programming Language
Go to file
2018-09-25 20:39:35 +01:00
.circleci enhance test_trailing_whitespace to test_check_style: several format rules for if/for are introduced 2018-09-20 21:31:16 +08:00
.github
cmake Rename JSONCPP_EXTRA_FLAGS to JSONCPP_CXX_FLAGS, add EMSCRIPTEN workaround and remove obsolete MSVC workaround. 2018-09-12 18:57:14 +02:00
docs Merge pull request #5082 from ethereum/abiUpdate 2018-09-25 20:31:17 +01:00
libdevcore fix format issue for source files 2018-09-20 17:41:59 +08:00
libevmasm Add helpers for the LOG instruction 2018-09-25 20:39:35 +01:00
libjulia fix typo 2018-09-21 09:27:33 +08:00
liblll fix code format problems 2018-09-19 00:18:49 +08:00
libsolc
libsolidity Removed extra whitespace. 2018-09-25 14:40:39 -03:00
lllc
scripts enhance test_trailing_whitespace to test_check_style: several format rules for if/for are introduced 2018-09-20 21:31:16 +08:00
snap
solc fix format issue for source files 2018-09-20 17:41:59 +08:00
test Better regex for finding version pragmas and replace it with >=0.0 2018-09-25 19:03:24 +01:00
.dockerignore
.editorconfig
.gitattributes
.gitignore Visual Studio 2017 build-time (linking) fix and improvements 2018-09-12 18:56:48 +02:00
.travis.yml Remove trailing whitespace for all files in the repository. 2018-09-04 11:30:30 +02:00
appveyor.yml
Changelog.md Disallow uppercase X in hex number literals 2018-09-19 22:01:15 +08:00
CMakeLists.txt Set version to 0.5.0-develop 2018-09-25 19:03:24 +01:00
CODE_OF_CONDUCT.md
codecov.yml
CODING_STYLE.md Remove trailing whitespace for all files in the repository. 2018-09-04 11:30:30 +02:00
CONTRIBUTING.md
LICENSE.txt
README.md Remove trailing whitespace for all files in the repository. 2018-09-04 11:30:30 +02:00
ReleaseChecklist.md

The Solidity Contract-Oriented Programming Language

Join the chat at https://gitter.im/ethereum/solidity Build Status Solidity is a statically typed, contract-oriented, high-level language for implementing smart contracts on the Ethereum platform.

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 logics.

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:

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

To get started with Solidity, you can use Remix, which is an 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.

Maintainers

@axic @chriseth

License

Solidity is licensed under GNU General Public License v3.0