• Stars
    star
    22,171
  • Rank 1,010 (Top 0.03 %)
  • Language
    C++
  • License
    GNU General Publi...
  • Created over 8 years ago
  • Updated 16 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Solidity, the Smart Contract Programming Language

The Solidity Contract-Oriented Programming Language

Matrix Chat Gitter Chat Solidity Forum X Follow Mastodon Follow

You can talk to us on Gitter and Matrix, tweet at us on X (previously 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 anyone 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 using 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

The Solidity programming language and compiler are open-source community projects governed by a core team. The core team is sponsored by the Ethereum Foundation.

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.

More Repositories

1

go-ethereum

Official Go implementation of the Ethereum protocol
Go
45,440
star
2

wiki

The Ethereum Wiki
14,759
star
3

EIPs

The Ethereum Improvement Proposal repository
Python
12,280
star
4

mist

[DEPRECATED] Mist. Browse and use Ðapps on the Ethereum network.
JavaScript
7,432
star
5

web3.py

A python interface for interacting with the Ethereum blockchain and ecosystem.
Python
4,701
star
6

ethereum-org-website

Ethereum.org is a primary online resource for the Ethereum community.
Markdown
4,230
star
7

aleth

Aleth – Ethereum C++ client, tools and libraries
C++
3,960
star
8

consensus-specs

Ethereum Proof-of-Stake Consensus Specifications
Python
3,388
star
9

pyethereum

Next generation cryptocurrency network
2,667
star
10

remix-project

Remix is a browser-based compiler and IDE that enables users to build Ethereum contracts with Solidity language and to debug transactions.
TypeScript
2,253
star
11

remix-ide

Documentation for Remix IDE
2,220
star
12

py-evm

A Python implementation of the Ethereum Virtual Machine
Python
2,172
star
13

ethereumj

DEPRECATED! Java implementation of the Ethereum yellowpaper. For JSON-RPC and other client features check Ethereum Harmony
Java
2,166
star
14

research

Python
1,708
star
15

yellowpaper

The "Yellow Paper": Ethereum's formal specification
TeX
1,598
star
16

fe

Emerging smart contract language for the Ethereum blockchain.
Rust
1,556
star
17

pm

Project Management: Meeting notes and agenda items
Python
1,473
star
18

solc-js

Javascript bindings for the Solidity compiler
TypeScript
1,404
star
19

remix

This has been moved to https://github.com/ethereum/remix-project
JavaScript
1,177
star
20

dapp-bin

A place for all the ÐApps to live
JavaScript
1,007
star
21

remix-desktop

Remix IDE desktop
JavaScript
1,000
star
22

devp2p

Ethereum peer-to-peer networking specifications
JavaScript
910
star
23

execution-apis

Collection of APIs provided by Ethereum execution layer clients
Io
850
star
24

kzg-ceremony

Resources and documentation related to the ongoing Ethereum KZG Ceremony.
812
star
25

execution-specs

Specification for the Execution Layer. Tracking network upgrades.
Python
766
star
26

evmone

Fast Ethereum Virtual Machine implementation
C++
756
star
27

sourcify

Decentralized Solidity contract source code verification service
TypeScript
716
star
28

casper

Casper contract, and related software and tests
Python
685
star
29

js-ethereum-cryptography

Every cryptographic primitive needed to work on Ethereum, for the browser and Node.js
TypeScript
638
star
30

meteor-dapp-wallet

This is an archived repository of one of the early Ethereum wallets.
JavaScript
598
star
31

btcrelay

Ethereum contract for Bitcoin SPV: Live on https://etherscan.io/address/0x41f274c0023f83391de4e0733c609df5a124c3d4
Python
585
star
32

solidity-examples

Loose collection of Solidity example code
Solidity
529
star
33

staking-deposit-cli

Secure key generation for deposits
Python
507
star
34

tests

Common tests for all Ethereum implementations
Python
506
star
35

webthree-umbrella

Former home of cpp-ethereum (Oct 2015 to Aug 2016)
492
star
36

sharding

Sharding manager contract, and related software and tests
Python
477
star
37

trinity

The Trinity client for the Ethereum network
Python
475
star
38

homebrew-ethereum

Homebrew Tap for Ethereum
Ruby
468
star
39

ethereum-org

[ARCHIVED] ethereum.org website from 2016-2019. See https://github.com/ethereum/ethereum-org-website for current version.
HTML
402
star
40

lahja

Lahja is a generic multi process event bus implementation written in Python 3.6+ to enable lightweight inter-process communication, based on non-blocking asyncio
Python
389
star
41

solc-bin

This repository contains current and historical builds of the Solidity Compiler.
JavaScript
379
star
42

hive

Ethereum end-to-end test harness
Go
371
star
43

serpent

C++
360
star
44

evmlab

Utilities for interacting with the Ethereum virtual machine
Python
352
star
45

eth-tester

Tool suite for testing ethereum applications.
Python
334
star
46

trin

An Ethereum portal client: a json-rpc server with nearly instant sync, and low CPU & storage usage
Rust
328
star
47

evmc

EVMC – Ethereum Client-VM Connector API
C
316
star
48

populus

The Ethereum development framework with the most cute animal pictures
316
star
49

annotated-spec

Vitalik's annotated eth2 spec. Not intended to be "the" annotated spec; other documents like Ben Edgington's https://benjaminion.xyz/eth2-annotated-spec/ also exist. This one is intended to focus more on design rationale.
310
star
50

beacon-APIs

Collection of RESTful APIs provided by Ethereum Beacon nodes
HTML
301
star
51

eth-utils

Utility functions for working with ethereum related codebases.
Python
300
star
52

homestead-guide

Python
291
star
53

eth2.0-pm

ETH2.0 project management
Python
261
star
54

staking-launchpad

The deposit launchpad for staking on Ethereum 🦏
TypeScript
257
star
55

portal-network-specs

Official repository for specifications for the Portal Network
JavaScript
256
star
56

ropsten

Ropsten public testnet PoW chain
Jupyter Notebook
256
star
57

eth-account

Account abstraction library for web3.py
Python
245
star
58

cbc-casper

Python
226
star
59

eth-abi

Ethereum ABI utilities for python
Python
223
star
60

remix-live

Live deployment of the remix IDE
JavaScript
221
star
61

act

Smart contract specification language
Haskell
214
star
62

hevm

symbolic EVM evaluator
Haskell
208
star
63

beacon_chain

Python
208
star
64

emacs-solidity

The official solidity-mode for EMACS
Emacs Lisp
201
star
65

moon-lang

Minimal code-interchange format
MoonScript
192
star
66

remixd

remix server
TypeScript
182
star
67

go-verkle

A go implementation of Verkle trees
Go
181
star
68

ethash

C
181
star
69

browser-solidity

Fomer location of remix-ide => https://github.com/ethereum/remix-ide
JavaScript
178
star
70

py_ecc

Python implementation of ECC pairing and bn_128 and bls12_381 curve operations
Python
175
star
71

py-solc

Python wrapper around the solc Solidity compiler.
Python
174
star
72

grid

[DEPRECATED] Download, configure, and run Ethereum nodes and tools
JavaScript
173
star
73

ERCs

The Ethereum Request for Comment repository
Solidity
169
star
74

pos-evolution

Evolution of the Ethereum Proof-of-Stake Consensus Protocol
167
star
75

mix

The Mix Ethereum Dapp Development Tool
JavaScript
164
star
76

evmjit

The Ethereum EVM JIT
C++
163
star
77

eth-keys

A common API for Ethereum key operations.
Python
153
star
78

remix-plugin

TypeScript
153
star
79

builder-specs

Specification for the external block builders.
HTML
152
star
80

solidity-underhanded-contest

Website for the Underhanded Solidity Contest
Solidity
151
star
81

meteor-dapp-whisper-chat-client

JavaScript
150
star
82

rig

Robust Incentives Group
HTML
117
star
83

public-disclosures

117
star
84

economic-modeling

Python
117
star
85

kzg-ceremony-specs

Specs for Ethereum's KZG Powers of Tau Ceremony
107
star
86

snake-charmers-tactical-manual

Development *stuff* for the Snake Charmers EF team
107
star
87

node-crawler

Attempts to crawl the Ethereum network of valid Ethereum execution nodes and visualizes them in a nice web dashboard.
Go
106
star
88

py-trie

Python library which implements the Ethereum Trie structure.
Python
100
star
89

py-wasm

A python implementation of the web assembly interpreter
Python
99
star
90

py-geth

Python wrapping for running Go-Ethereum as a subprocess
Python
97
star
91

pyrlp

The python RLP serialization library
Python
96
star
92

swarm-dapps

Swarm Đapp Examples
JavaScript
96
star
93

remix-vscode

Remix VS Code extension
TypeScript
95
star
94

eth-hash

The Ethereum hashing function, keccak256, sometimes (erroneously) called sha256 or sha3
Python
95
star
95

dapp-styles

HTML
94
star
96

ens-registrar-dapp

Registrar DApp for the Ethereum Name Service
JavaScript
94
star
97

remix-workshops

Solidity
94
star
98

c-kzg-4844

Minimal 4844 version of c-kzg
Nim
93
star
99

retesteth

testeth via RPC. Test run, generation by t8ntool protocol
C++
93
star
100

pyethsaletool

Python
85
star