mirror of
https://github.com/tornadocash/tornado-anonymity-mining.git
synced 2024-11-22 17:50:21 +01:00
12 lines
391 B
Solidity
12 lines
391 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
interface IVerifier {
|
|
function verifyProof(bytes calldata proof, uint256[4] calldata input) external view returns (bool);
|
|
|
|
function verifyProof(bytes calldata proof, uint256[7] calldata input) external view returns (bool);
|
|
|
|
function verifyProof(bytes calldata proof, uint256[12] calldata input) external view returns (bool);
|
|
}
|