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