@@ -35,22 +35,23 @@ import "../../interfaces/IERC5267.sol";
35
35
abstract contract EIP712 is IERC5267 {
36
36
using ShortStrings for * ;
37
37
38
+ bytes32 private constant _TYPE_HASH =
39
+ keccak256 ("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract) " );
40
+
38
41
/* solhint-disable var-name-mixedcase */
39
42
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
40
43
// invalidate the cached domain separator if the chain id changes.
41
- bytes32 private immutable _CACHED_DOMAIN_SEPARATOR ;
42
- uint256 private immutable _CACHED_CHAIN_ID ;
43
- address private immutable _CACHED_THIS ;
44
+ bytes32 private immutable _cachedDomainSeparator ;
45
+ uint256 private immutable _cachedChainId ;
46
+ address private immutable _cachedThis ;
44
47
45
- bytes32 private immutable _HASHED_NAME ;
46
- bytes32 private immutable _HASHED_VERSION ;
47
- bytes32 private constant _TYPE_HASH =
48
- keccak256 ( " EIP712Domain( string name,string version,uint256 chainId,address verifyingContract) " ) ;
48
+ ShortString private immutable _name ;
49
+ ShortString private immutable _version ;
50
+ string private _nameFallback;
51
+ string private _versionFallback ;
49
52
50
- ShortString private immutable _NAME;
51
- ShortString private immutable _VERSION;
52
- string private _NAME_FALLBACK;
53
- string private _VERSION_FALLBACK;
53
+ bytes32 private immutable _hashedName;
54
+ bytes32 private immutable _hashedVersion;
54
55
55
56
/* solhint-enable var-name-mixedcase */
56
57
@@ -67,29 +68,29 @@ abstract contract EIP712 is IERC5267 {
67
68
* contract upgrade].
68
69
*/
69
70
constructor (string memory name , string memory version ) {
70
- _NAME = name.toShortStringWithFallback (_NAME_FALLBACK);
71
- _VERSION = version.toShortStringWithFallback (_VERSION_FALLBACK);
71
+ _name = name.toShortStringWithFallback (_nameFallback);
72
+ _version = version.toShortStringWithFallback (_versionFallback);
73
+ _hashedName = keccak256 (bytes (name));
74
+ _hashedVersion = keccak256 (bytes (version));
72
75
73
- _HASHED_NAME = keccak256 (bytes (name));
74
- _HASHED_VERSION = keccak256 (bytes (version));
75
- _CACHED_CHAIN_ID = block .chainid ;
76
- _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator ();
77
- _CACHED_THIS = address (this );
76
+ _cachedChainId = block .chainid ;
77
+ _cachedDomainSeparator = _buildDomainSeparator ();
78
+ _cachedThis = address (this );
78
79
}
79
80
80
81
/**
81
82
* @dev Returns the domain separator for the current chain.
82
83
*/
83
84
function _domainSeparatorV4 () internal view returns (bytes32 ) {
84
- if (address (this ) == _CACHED_THIS && block .chainid == _CACHED_CHAIN_ID ) {
85
- return _CACHED_DOMAIN_SEPARATOR ;
85
+ if (address (this ) == _cachedThis && block .chainid == _cachedChainId ) {
86
+ return _cachedDomainSeparator ;
86
87
} else {
87
88
return _buildDomainSeparator ();
88
89
}
89
90
}
90
91
91
92
function _buildDomainSeparator () private view returns (bytes32 ) {
92
- return keccak256 (abi.encode (_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION , block .chainid , address (this )));
93
+ return keccak256 (abi.encode (_TYPE_HASH, _hashedName, _hashedVersion , block .chainid , address (this )));
93
94
}
94
95
95
96
/**
@@ -131,8 +132,8 @@ abstract contract EIP712 is IERC5267 {
131
132
{
132
133
return (
133
134
hex "0f " , // 01111
134
- _NAME .toStringWithFallback (_NAME_FALLBACK ),
135
- _VERSION .toStringWithFallback (_VERSION_FALLBACK ),
135
+ _name .toStringWithFallback (_nameFallback ),
136
+ _version .toStringWithFallback (_versionFallback ),
136
137
block .chainid ,
137
138
address (this ),
138
139
bytes32 (0 ),
0 commit comments