Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Solidity, the Smart Contract Programming Language

License

NotificationsYou must be signed in to change notification settings

argotorg/solidity

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Matrix ChatGitter ChatSolidity ForumX FollowMastodon 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 officialSolidity Language Portal.

Table of Contents

Background

Solidity is a statically-typed curly-braces programming language designed for developing smart contractsthat run on the Ethereum Virtual Machine. Smart contracts are programs that are executed inside a peer-to-peernetwork 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 ofSolidity. This is because breaking changes, as well as new features and bug fixes, areintroduced regularly. We currently use a 0.x versionnumberto indicate this fast pace of change.

Build and Install

Instructions about how to build and install the Solidity compiler can befound in theSolidity documentation.

Example

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

// SPDX-License-Identifier: MITpragma solidity>=0.6.0<0.9.0;contractHelloWorld {function helloWorld()externalpurereturns (stringmemory) {return"Hello, World!";    }}

To get started with Solidity, you can useRemix, which is abrowser-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 usingRead the Docs.

Development

Solidity is still under development. Contributions are always welcome!Please follow theDeveloper's Guideif you want to help.

You can find our current feature and bug priorities for forthcomingreleases in theprojects section.

Maintainers

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

License

Solidity is licensed underGNU General Public License v3.0.

Some third-party code has itsown licensing terms.

Security

The security policy may befound here.


[8]ページ先頭

©2009-2025 Movatter.jp