All Projects → ethereum → Solidity

ethereum / Solidity

Licence: gpl-3.0
Solidity, the Smart Contract Programming Language

Programming Languages

solidity
1140 projects
C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
shell
77523 projects
CMake
9771 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Solidity

Ethlist
The Comprehensive Ethereum Reading List
Stars: ✭ 3,576 (-73.88%)
Mutual labels:  blockchain, ethereum, smartcontracts
Ethnode
Run an Ethereum node (Geth or Openethereum) for development
Stars: ✭ 74 (-99.46%)
Mutual labels:  blockchain, ethereum
Uniswap Interface
🦄 An open source interface for the Uniswap protocol
Stars: ✭ 1,337 (-90.23%)
Mutual labels:  blockchain, ethereum
Epirus Free
Ethereum, Hyperledger Besu and Quorum private blockchain explorer
Stars: ✭ 79 (-99.42%)
Mutual labels:  blockchain, ethereum
Smart Contracts
Ethereum smart contracts for security and utility tokens
Stars: ✭ 1,187 (-91.33%)
Mutual labels:  blockchain, ethereum
Use Dai
💸 A curated, community compiled list of everywhere you can use the decentralized Dai stablecoin
Stars: ✭ 74 (-99.46%)
Mutual labels:  blockchain, ethereum
Marketprotocol
Ethereum based derivatives trading protocol creating digital tokens for any asset
Stars: ✭ 78 (-99.43%)
Mutual labels:  blockchain, ethereum
Minimal
Modular Ethereum client
Stars: ✭ 69 (-99.5%)
Mutual labels:  blockchain, ethereum
Trust Wallet Ios
📱 Trust - Ethereum Wallet and Web3 DApp Browser for iOS
Stars: ✭ 1,228 (-91.03%)
Mutual labels:  blockchain, ethereum
Whale
🐋 Show Ethereum and Bitcoin price in command line interface (CLI).
Stars: ✭ 81 (-99.41%)
Mutual labels:  blockchain, ethereum
Chaingear
The consensus computer driven database framework
Stars: ✭ 83 (-99.39%)
Mutual labels:  blockchain, ethereum
Etherwalletkit
Ethereum Wallet Toolkit for iOS - You can implement an Ethereum wallet without a server and blockchain knowledge.
Stars: ✭ 96 (-99.3%)
Mutual labels:  blockchain, ethereum
Colonyjs
The Colony JavaScript client
Stars: ✭ 72 (-99.47%)
Mutual labels:  blockchain, ethereum
Nethereum
Ethereum .Net cross platform integration library
Stars: ✭ 1,191 (-91.3%)
Mutual labels:  blockchain, ethereum
Cava
ConsenSys core libraries for Java & Kotlin
Stars: ✭ 71 (-99.48%)
Mutual labels:  blockchain, ethereum
Portis Sdk
Portis Web SDK [DEPRECATED, PLEASE USE OUR NEW SDK: https://github.com/portis-project/web-sdk]
Stars: ✭ 78 (-99.43%)
Mutual labels:  blockchain, ethereum
Dapp
Censorship resistant democracies.
Stars: ✭ 1,326 (-90.31%)
Mutual labels:  blockchain, ethereum
The Journal Of Blockchain
区块链自媒体、专注区块链技术学习和实践、IPFS/Filecoin、Bitcoin、Ethereum、EOS、Cosmos、区块链、白皮书、Coinmarketcap、Coindesk、Safe Network、Telegram、Docker、社会治理、经济激励
Stars: ✭ 63 (-99.54%)
Mutual labels:  blockchain, ethereum
Web Sdk
Portis Web SDK
Stars: ✭ 65 (-99.53%)
Mutual labels:  blockchain, ethereum
Istanbul Tools
Istanbul BFT tools
Stars: ✭ 80 (-99.42%)
Mutual labels:  blockchain, ethereum

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].