mirror of
https://github.com/vacp2p/rln-interep-contract.git
synced 2025-02-28 22:20:42 +00:00
12 lines
240 B
Solidity
12 lines
240 B
Solidity
|
// 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 {}
|
||
|
}
|