1. 09 Feb, 2022 6 commits
  2. 07 Feb, 2022 1 commit
    • Rename some ERC20 parameters to match the standard document. (#3167) · 63b46690
      * Renames `sender` to `source`.
      
      The naming variable was incorrect.  The source of the funds is *not* necessarily (and in most cases isn't) the sender of the transaction.  Also, this code has a `msgSender` which further adds confusion.
      
      * Changes to `from/to` instead of `source`.
      
      * Function documentation matches new names
      
      * Changed other instances of sender/recipient to from/to.
      
      Also changed `msgSender` to `owner` in the approval related methods.
      
      * apply changes to IERC20.sol + minor renaming in ERC20.sol
      
      Co-authored-by: Daniel Von Fange <daniel@leancoder.com>
      Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
      Micah Zoltu authored
  3. 04 Feb, 2022 2 commits
  4. 03 Feb, 2022 1 commit
  5. 02 Feb, 2022 1 commit
  6. 01 Feb, 2022 4 commits
  7. 31 Jan, 2022 3 commits
  8. 29 Jan, 2022 1 commit
  9. 27 Jan, 2022 1 commit
  10. 26 Jan, 2022 3 commits
  11. 25 Jan, 2022 1 commit
  12. 24 Jan, 2022 2 commits
  13. 23 Jan, 2022 2 commits
  14. 21 Jan, 2022 1 commit
  15. 18 Jan, 2022 1 commit
  16. 16 Jan, 2022 1 commit
  17. 14 Jan, 2022 1 commit
  18. 13 Jan, 2022 2 commits
  19. 12 Jan, 2022 2 commits
  20. 11 Jan, 2022 3 commits
  21. 10 Jan, 2022 1 commit
    • Do not reduce approval on transferFrom if current allowance is type(uint256).max (#3085) · 80d8da05
      * add feature request #3084
      
      * Update contracts/token/ERC20/ERC20.sol
      
      Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
      
      * Add changelog note
      
      * add documentation
      
      * test unlimitted allowance and add ERC777 unlimitted allowance
      
      * reference PR in changelog
      
      * documentation IERC20 -> ERC20
      
      * use asciidoc note syntax
      
      * use asciidoc note syntax
      
      * typo
      
      * typos
      
      Co-authored-by: Hadrien Croubois <hadrien.croubois@gmail.com>
      Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
      0xclaudeshannon authored