
How can a developer make changes to deployed smart contract?
smart contract are immutable which means once they are deployed, they cannot be changed but what if the developer wants to make changes to the code
Search for a command to run...

smart contract are immutable which means once they are deployed, they cannot be changed but what if the developer wants to make changes to the code

Hello readers, in this article I will be explaining explicitly overflow and underflow in solidity. Before I define what overflow and underflow are, you need to know about unsigned integer(uint). Overflow and underflow happens because of uint and reas...

Solidity Simplified

Hello readers, in this article, I will be explaining explicitly what we called Iterable mapping using code. First step is to declare your pragma solidity and the contract name. pragma solidity ^0.8.0; contract Michael{ } Declare mapping balances w...

Naming token in solidity for beginner.

Hello readers, in this article, you are going to learn the difference between view and pure function scope and when to use them. Let first declare solidity compiler version and then the contract. pragma solidity ^0.8.10; contract ViewPure { } Where...

Solidity function pausing mechanism

Boolean datatype in solidity

Hello readers, in this article, I will be explaining for and foreach loop in php. Let first attend to for loop. For Loop A for loop is used to repeat code over a particular number of times. Below is how to iterate using for loop in php. <?php for($...