Skip to content

Commit f6e54ab

Browse files
committed
rename variables to camel case
1 parent 16754dc commit f6e54ab

File tree

1 file changed

+24
-23
lines changed

1 file changed

+24
-23
lines changed

contracts/utils/cryptography/EIP712.sol

+24-23
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,23 @@ import "../../interfaces/IERC5267.sol";
3535
abstract contract EIP712 is IERC5267 {
3636
using ShortStrings for *;
3737

38+
bytes32 private constant _TYPE_HASH =
39+
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
40+
3841
/* solhint-disable var-name-mixedcase */
3942
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
4043
// 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;
4447

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;
4952

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;
5455

5556
/* solhint-enable var-name-mixedcase */
5657

@@ -67,29 +68,29 @@ abstract contract EIP712 is IERC5267 {
6768
* contract upgrade].
6869
*/
6970
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));
7275

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);
7879
}
7980

8081
/**
8182
* @dev Returns the domain separator for the current chain.
8283
*/
8384
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;
8687
} else {
8788
return _buildDomainSeparator();
8889
}
8990
}
9091

9192
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)));
9394
}
9495

9596
/**
@@ -131,8 +132,8 @@ abstract contract EIP712 is IERC5267 {
131132
{
132133
return (
133134
hex"0f", // 01111
134-
_NAME.toStringWithFallback(_NAME_FALLBACK),
135-
_VERSION.toStringWithFallback(_VERSION_FALLBACK),
135+
_name.toStringWithFallback(_nameFallback),
136+
_version.toStringWithFallback(_versionFallback),
136137
block.chainid,
137138
address(this),
138139
bytes32(0),

0 commit comments

Comments
 (0)