rln-interep-contract/contracts/VerifierTest.sol

12 lines
240 B
Solidity
Raw Normal View History

2022-11-28 10:32:53 +05:30
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
contract VerifierTest {
function verifyProof(
uint[2] memory a,
uint[2][2] memory b,
uint[2] memory c,
uint[4] memory input
) public view {}
}