Posts

Showing posts from June, 2018

Solidity Basics

Image
End of this post you can get basic knowledge on Solidity Language. If you have any programming experience before, this post will boost your knowledge up to developing a complete Ethereum software solution. To test Solidity codes which you write in this session, you can use online tool called Remix . Remix is a online Solidity Compiler and Testing Environment  which uses your browser folder and your machine resources to save data. What is Solidity? Solidity is Contract Oriented, Object Oriented, High Level Language for writing Smart Contract aiming  the Ethereum Virtual Machine. Solidity is influenced by C++, Python and Java Script. What are the Basic Data Types in Solidity ? Here i mentioned basic and most usable data types. With the time i will update this content. bool - true, false string - "" int / uint - int8 (0 - 255) & int256 (0 - 2 power 256) address - store Ethereum address (keep in your mind, apart from the string all the other data ty