A Smart Contract is a computer program that directly and automatically controls the transfer of digital assets between the parties under certain conditions. A smartโฆ Read More
Category Archives: Solidity
Solidity is a programming language used for writing smart contracts for many platforms of blockchain, the most common of which is ethereum. It is anโฆ Read More
Smart contracts are self-executing contracts. They were first proposed by Nick Szabo in the 90s. They are set of rules and protocols which two partiesโฆ Read More
Storage and Memory keywords in Solidity are analogous to Computer’s hard drive and Computer’s RAM. Much like RAM, Memory in Solidity is a temporary placeโฆ Read More
Smart contracts are pieces of code that are stored on the blockchain and are executed by the Ethereum Virtual Machine (EVM). The EVM also providesโฆ Read More
There exist special variables and functions in solidity which exist in the global namespace and are mainly used to provide information about the blockchain orโฆ Read More
ERC token standard 20 tokens in a smart contract token that follows the Ethereum Request for Comment proposal 20 guidelines. Our program will have theโฆ Read More
Random numbers are numbers that occur in a sequence with the following two mandatory conditions: The values are uniformly distributed over a set interval. Oneโฆ Read More
The solidity fallback function is executed if none of the other functions match the function identifier or no data was provided with the function call.โฆ Read More
Solidity is a brand-new programming language created by the Ethereum which is the second-largest market of cryptocurrency by capitalization, released in the year 2015 ledโฆ Read More
A cryptographic hash function is an algorithm that takes an arbitrary amount of data as input and produces the enciphered text of fixed size. Evenโฆ Read More
Solidity is a high-level language. The structure of smart contracts in solidity is very similar to the structure of classes in object-oriented languages. The solidityโฆ Read More
Solidity is a brand-new programming language created by Ethereum which is the second-largest market of cryptocurrency by capitalization, released in the year 2015 and ledโฆ Read More
Polymorphism is the ability to process data in more than one form. Like any other programming language, Solidity also supports polymorphism. Solidity supports two typesโฆ Read More
Inheritance is one of the most important features of the object-oriented programming language. It is a way of extending the functionality of a program, usedโฆ Read More