From 5b68064c921174f0306fec914ecc49acd880aeba Mon Sep 17 00:00:00 2001 From: z0r0z <92001561+z0r0z@users.noreply.github.com> Date: Sun, 18 Dec 2022 14:48:08 +0530 Subject: [PATCH] =?UTF-8?q?EIP-2612=20=F0=9F=91=89=20ERC2612?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EIP-2612 👉 ERC2612 --- src/tokens/ERC20.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tokens/ERC20.sol b/src/tokens/ERC20.sol index 96570446..df0adcf4 100644 --- a/src/tokens/ERC20.sol +++ b/src/tokens/ERC20.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; -/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. +/// @notice Modern and gas efficient ERC20 + ERC2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. @@ -35,7 +35,7 @@ abstract contract ERC20 { mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// - EIP-2612 STORAGE + ERC2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; @@ -110,7 +110,7 @@ abstract contract ERC20 { } /*////////////////////////////////////////////////////////////// - EIP-2612 LOGIC + ERC2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit(