This website requires JavaScript.
Explore
Help
Sign in
Git-Mirrors
/
blockchains-security-toolkit
Watch
1
Star
0
Fork
You've already forked blockchains-security-toolkit
0
mirror of
https://github.com/autistic-symposium/blockchains-security-toolkit.git
synced
2025-05-13 12:12:19 -04:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
283fc69c42
blockchains-security-toolkit
/
advanced_expert
/
vulnerabilities
/
arithmetic_errors
History
Download ZIP
Download TAR.GZ
steinkirch.eth, phd
d85f813a9d
add info on safemath
2023-06-19 09:19:01 -07:00
..
overflow.md
Rename advanced_expert/vulnerabilities/overflow.md to advanced_expert/vulnerabilities/arithmetic_errors/overflow.md
2023-06-19 09:15:39 -07:00
overflow.sol
Create overflow.sol
2023-06-19 09:18:04 -07:00
README.md
add info on safemath
2023-06-19 09:19:01 -07:00
README.md
arithmetic errors
defaults:
solidity < 0.8: integers in overflow / underflow without any errors.
solidity >= 0.8: default behaviour of for overflow / underflow is to throw an error.
use
SafeMath
to prevent arithmetic overflow and underflow.