Solidity – Function Overloading
This topic is about Solidity - Function Overloading. You can have multiple definitions for the same function name in the same scope. The definition of the function must differ from…
This topic is about Solidity - Function Overloading. You can have multiple definitions for the same function name in the same scope. The definition of the function must differ from…
This topic is about Solidity - Fallback Function. Fallback function is a special function available to a contract. It has following features − It is called when a non-existent function…
This topic is about Solidity - View Functions. View functions ensure that they will not modify the state. A function can be declared as view. The following statements if present in…
This topic is about Solidity - Function Modifiers. Function Modifiers are used to modify the behaviour of a function. For example to add a prerequisite to a function. First we…
This topic is about Solidity - Functions. A function is a group of reusable code which can be called anywhere in your program. This eliminates the need of writing the…
In this guide, we will discuss Git Ignore. In Git, the term "ignore" is used to specify intentionally untracked files that Git should ignore. It doesn't affect the files that…
This topic is about Solidity - Style Guide. Style Guide helps to maintain code layout consistent and make code more readable. Following are the best practices following while writing contracts…
This topic is about Solidity - Special Variables. Special variables are globally available variables and provides information about the blockchain. Following is the list of special variables − Sr.No.Special Variable…
This topic is about Solidity - Ether Units. In solidity we can use wei, finney, szabo or ether as a suffix to a literal to be used to convert various…
This topic is about Solidity - Conversions. Solidity allows implicit as well as explicit conversion. Solidity compiler allows implicit conversion between two data types provided no implicit conversion is possible…