What is Gas? Gas is a unit of measurement on the Ethereum network. It quantifies the computational effort required to…
Solidity Basics
Learn how to develop a Solidity smart contract
mstore and mload functions in Solidity
In Solidity, mstore and mload are crucial functions for handling low-level memory operations. These functions play a vital role in…
Real world assets on Ethereum
Creating Real-World Assets on Ethereum: A Comprehensive Guide to Solidity In recent years, the Ethereum blockchain has gained significant traction…
Modules in Solidity
Modules in Solidity. Solidity is the most widely used programming language for writing smart contracts on the Ethereum blockchain. It’s…
Try Catch in Solidity
A try catch is a common error handling mechanism used in many programming languages, and Solidity is no exception. In…
Dynamic array in Solidity
A dynamic array is a type of array in which the length of the array can be changed at runtime.…
New keyword in Solidity smart contracts
There are a few different ways to create a smart contract from an existing smart contract. One way is to…
Interface in Solidity smart contracts
An interface in Solidity behaves similarly to interface agreements in traditional object-oriented programming languages. In object-oriented programming an interface is…