6 lines
178 B
Solidity
6 lines
178 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
interface IVerifier {
|
|
function verifyProof(bytes memory _proof, uint256[6] memory _input) external returns (bool);
|
|
} |