From d9e307278395439f4cc6b9287874f8a74554c5f2 Mon Sep 17 00:00:00 2001 From: ernestognw Date: Fri, 9 Jun 2023 15:50:56 -0600 Subject: [PATCH] Add Available tags --- contracts/utils/cryptography/EIP712.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contracts/utils/cryptography/EIP712.sol b/contracts/utils/cryptography/EIP712.sol index 57b31f88d95..a1c65c8393c 100644 --- a/contracts/utils/cryptography/EIP712.sol +++ b/contracts/utils/cryptography/EIP712.sol @@ -145,6 +145,8 @@ abstract contract EIP712 is IERC5267 { * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). + * + * _Available since v5.0._ */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { @@ -156,6 +158,8 @@ abstract contract EIP712 is IERC5267 { * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). + * + * _Available since v5.0._ */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) {