You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
664 B
28 lines
664 B
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IERC5267 {
|
||
|
/**
|
||
|
* @dev MAY be emitted to signal that the domain could have changed.
|
||
|
*/
|
||
|
event EIP712DomainChanged();
|
||
|
|
||
|
/**
|
||
|
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
|
||
|
* signature.
|
||
|
*/
|
||
|
function eip712Domain()
|
||
|
external
|
||
|
view
|
||
|
returns (
|
||
|
bytes1 fields,
|
||
|
string memory name,
|
||
|
string memory version,
|
||
|
uint256 chainId,
|
||
|
address verifyingContract,
|
||
|
bytes32 salt,
|
||
|
uint256[] memory extensions
|
||
|
);
|
||
|
}
|