mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-01-31 10:46:53 +00:00
db124ddbd9
first configuration, then contracts that we depend on
12 lines
253 B
Solidity
12 lines
253 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.8;
|
|
|
|
interface IVerifier {
|
|
function verifyProof(
|
|
uint[2] calldata _pA,
|
|
uint[2][2] calldata _pB,
|
|
uint[2] calldata _pC,
|
|
uint[3] calldata _pubSignals
|
|
) external view returns (bool);
|
|
}
|