Abiodun Awoyemiaagbotemi.hashnode.dev·Jan 7, 2023Solidity Attack Vectors #2 - Arithmetic Overflow and UnderflowOverflow Overflow is a state uint (unsigned integer) reaches its maximum value, and the next element added will return the default value. uint8 can hold values within the range(0, 255), if the value of an arithmetic operation becomes greater than 255...28 readsSolidity
Michael Fawoleadisotech.hashnode.dev·Nov 25, 2022overflow and underflow in solidityHello 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...underflow