rln-contract/contracts/IVerifier.sol

10 lines
265 B
Solidity
Raw Normal View History

2023-05-26 08:01:05 +00:00
// SPDX-License-Identifier: Apache-2.0 OR MIT
pragma solidity 0.8.15;
interface IVerifier {
function verifyProof(uint256[2] memory a, uint256[2][2] memory b, uint256[2] memory c, uint256[2] memory input)
external
view
returns (bool);
}