Solidity – Quick Guide, Solidity is a contract-oriented, high-level programming language for implementing smart contracts. Solidity is highly influenced by C++, Python and JavaScript a…Read More
Solidity – Useful Resources, The following resources contain additional information on Solidity. Please use them to get more in-depth knowledge on this.…Read More
Discuss Solidity, Solidity is a contract-oriented, high-level programming language for implementing smart contracts. Solidity is highly influenced by C++, Python and JavaScript a…Read More
Solidity – Error Handling, Solidity provides various functions for error handling. Generally when an error occurs, the state is reverted back to its original state. Other checks are to pr…Read More
Solidity – Events, Event is an inheritable member of a contract. An event is emitted, it stores the arguments passed in transaction logs. These logs are stored on blockchain and a…Read More
Solidity – Assembly, Solidity provides an option to use assembly language to write inline assembly within Solidity source code. We can also write a standalone assembly code which th…Read More
Solidity – Abstract Contracts, Abstract Contract is one which contains at least one function without any implementation. Such a contract is used as a base contract. Generally an abstract cont…Read More
Solidity – Interfaces, Interfaces are similar to abstract contracts and are created using interface keyword. Following are the key characteristics of an interface.…Read More
Solidity – Libraries, Libraries are similar to Contracts but are mainly intended for reuse. A Library contains functions which other contracts can call. Solidity have certain restric…Read More
Solidity – Contracts, Contract in Solidity is similar to a Class in C++. A Contract have following properties.…Read More