mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-01-31 10:46:53 +00:00
12 lines
249 B
Solidity
12 lines
249 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.23;
|
|
|
|
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);
|
|
}
|