Learn Solidity easily
-
Learn Solidity: Function Modifiers & How They Works
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
No CommentsIn this post, we will understand what are function modifiers & how to use them in Solidity Language.
-
Learn Solidity: Function Calls & Return Types in Solidity
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the how function calls work & how to specify their return types in Solidity Language.
-
Learn Solidity: Input and Output Parameters of Functions
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the how Input & output Parameters can be defined in Solidity Language.
-
Learn Solidity: Scoping and Declarations in Solidity
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the scoping & declaration of variables in Solidity Language.
-
Learn Solidity: Control Structure (if-else, for, while, Do-While)
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the Control Structure (if-else, for, while, Do-While) in Solidity Language.
-
Learn Solidity: Operators: Arithmetic, Logical & Bitwise Operators
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the Operators: Arithmetic, Logical & Bitwise Operators in Solidity Language.
-
Learn Solidity: Globally Available Variables & Functions
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the globally available variables & functions in solidity programming language.
-
Learn Solidity: Ether Units & Time Units in Solidity Programming Language
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the standard Ether units & time-related units in Solidity Programming Language.
-
Learn Solidity: General Value or Data Types in Solidity
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the general value types or data types in Solidity programming language.
-
Learn Solidity: Layout of a Solidity Source File & Structure of Smart Contracts
- 19 April, 2017
- Posted by: toshendra
- Category: Blockchain, Development, Ethereum, Solidity
In this post, we will understand the default standard structure of the Solidity-Based Smart Contract file which generally has the .sol extension. As you can see in the above code, It always starts with version pragma followed by optional import section through which you can import any existing.sol files into the current .sol file. Then