From 65ab80d4f8cfda2677a945a93710b50284b8107d Mon Sep 17 00:00:00 2001 From: Lucas Manuel Date: Thu, 10 Mar 2022 09:37:31 -0600 Subject: [PATCH] fix: update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b3e6fd..2626e3f 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Basic ERC-20 contract designed to be inherited and extended. Leveraging native overflow checks in solc 0.8 to simplify ERC-20 implementation. It should be noted that this ERC-20 implementation does not include some functionality that is commonly used in other tokens, such as: - `address(0)` checks on `_transfer` -- `increaseAllowance` -- `decreaseAllowance` +- `push` +- `pull` This was intentional, as this ERC-20 was intended to have the minimum functionality necessary, allowing for maximum extendability and customizability.