mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-04-25 23:12:17 +00:00
9 lines
206 B
Solidity
9 lines
206 B
Solidity
|
pragma solidity ^0.5.4;
|
||
|
pragma experimental ABIEncoderV2;
|
||
|
|
||
|
import "./Structs.sol";
|
||
|
|
||
|
contract IVerifier is Structs {
|
||
|
function isValid(Data calldata data, Proof calldata proof) external returns (bool);
|
||
|
}
|