#software-development
Read more stories on Hashnode
Articles with this tag
Preventing the Reentrancy Hack · With the rise of web3, we have seen financial solutions taking advantage of the blockchain to deliver innovative...
Deploying an NFT Smart Contract on Ethereum · NFT(Non-Fungible Tokens) are tokens used to represent digital assets with inherent properties that are...
Extending PHP for Debugging · Every good developer knows that in the process of software development, the ability to debug the application properly plays...
2023! it's a new year that promises to be a really great one. There are technologies to master, products to build, etc. I believe there is also a...
Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. There are 3 types of...
Getter functions can be declared view or pure. View function declares that no state will be changed. Pure function declares that no state variable...