@@ -56,14 +56,14 @@ contract Safe is
5656 string public constant override VERSION = "1.5.0 " ;
5757
5858 /**
59- * @notice The precomputed EIP-712 domain separator hash for Safe typed data hashing and signing.
60- * @dev Precomputed value of: `keccak256("EIP712Domain(uint256 chainId,address verifyingContract)")`.
59+ * @dev The precomputed EIP-712 domain separator hash for Safe typed data hashing and signing.
60+ * Precomputed value of: `keccak256("EIP712Domain(uint256 chainId,address verifyingContract)")`.
6161 */
6262 bytes32 private constant DOMAIN_SEPARATOR_TYPEHASH = 0x47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a79469218 ;
6363
6464 /**
65- * @notice The precomputed EIP-712 type hash for the Safe transaction type.
66- * @dev Precomputed value of: `keccak256("SafeTx(address to,uint256 value,bytes data,uint8 operation,uint256 safeTxGas,uint256 baseGas,uint256 gasPrice,address gasToken,address refundReceiver,uint256 nonce)")`.
65+ * @dev The precomputed EIP-712 type hash for the Safe transaction type.
66+ * Precomputed value of: `keccak256("SafeTx(address to,uint256 value,bytes data,uint8 operation,uint256 safeTxGas,uint256 baseGas,uint256 gasPrice,address gasToken,address refundReceiver,uint256 nonce)")`.
6767 */
6868 bytes32 private constant SAFE_TX_TYPEHASH = 0xbb8310d486368db6bd6f849402fdd73ad53d316b5a4b2644ad6efe0f941286d8 ;
6969
@@ -73,8 +73,8 @@ contract Safe is
7373 uint256 public override nonce;
7474
7575 /**
76- * @notice Deprecated precomputed domain separator.
77- * @dev This deprecated storage variable is no longer in use but remains declared for storage layout compatibility across Safe versions.
76+ * @dev Deprecated precomputed domain separator.
77+ * It is no longer in use but remains declared for storage layout compatibility across Safe versions.
7878 */
7979 bytes32 private _deprecatedDomainSeparator;
8080
0 commit comments