Writing Smart Contracts With Solidity
Credit to Skykingit (https://github.com/skykingit/solidity)
Last updated
Was this helpful?
Credit to Skykingit (https://github.com/skykingit/solidity)
Last updated
Was this helpful?
If you would like to read this Solidity guide in a dedicated Gitbook, see .
Solidity is an object-oriented, high-level language for implementing smart contracts. Smart contracts are programs which govern the behaviour of accounts within the Ethereum state.
Solidity was influenced by C++, Python and JavaScript and is designed to target the Ethereum Virtual Machine (EVM).
Solidity is statically typed, supports inheritance, libraries and complex user-defined types among other features.
With Solidity you can create contracts for uses such as voting, crowdfunding, blind auctions, and multi-signature wallets.
If you are new to the concept of smart contracts we recommend you start with written in Solidity. When you are ready for more detail, we recommend you read the and sections to learn the core concepts of the language.
For further reading, try and details of the .
As humans write software, it can have bugs. You should follow established software development best-practices when writing your smart contracts, this includes code review, testing, audits, and correctness proofs. Smart contract users are sometimes more confident with code than their authors, and blockchains and smart contracts have their own unique issues to watch out for, so before working on production code, make sure you read the section.
If you have any questions, you can try searching for answers or asking on the , or our .
Ideas for improving Solidity or this documentation are always welcome, read our for more details.
Community volunteers help translate this documentation into several languages. They have varying degrees of completeness and up-to-dateness. The English version stands as a reference.
(in progress)
(rather outdated)
(in progress)
(in progress)