organize chapters for the ongoing research, remove dead links, add new resources

This commit is contained in:
bt3gl 2024-11-04 18:42:30 +07:00
parent 1748d1ed22
commit 184e917000
98 changed files with 421 additions and 11268 deletions

View file

@ -6,3 +6,14 @@
* 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](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol)** to prevent arithmetic overflow and underflow.
<br>
---
### chapters
<br>
* **[overflow](overflow)**

View file

@ -2,12 +2,7 @@
<br>
<br>
----
### unchecked math
### tl; dr: unchecked math
<br>
@ -50,5 +45,3 @@ contract UncheckedMath {
}
```
<br>