Reentrancy Attack in Solidity
Preventing the Reentrancy Hack

Search for a command to run...
Articles tagged with #software-development
Preventing the Reentrancy Hack

Deploying an NFT Smart Contract on Ethereum

Extending PHP for Debugging

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 growing demand for not just software developers but sound software developers that can build systems and...

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 variables in Solidity local declared inside a function not stored on the blockchain state declare...

Getter functions can be declared view or pure. View function declares that no state will be changed. Pure function declares that no state variable will be changed or read. // SPDX-License-Identifier: MIT pragma solidity ^0.7.3; contract ViewAndPure ...
