Skip to content
This repository was archived by the owner on Dec 10, 2025. It is now read-only.

Latest commit

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

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.


chapters