10 lines
262 B
Solidity
10 lines
262 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.8.17;
|
||
|
|
||
|
interface IEvalEIP712Buffer {
|
||
|
function evalEIP712Buffer(bytes32 domainHash, string memory primaryType, bytes memory typedDataBuffer)
|
||
|
external
|
||
|
view
|
||
|
returns (string[] memory);
|
||
|
}
|