2021-02-01 16:40:32 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
|
2021-02-10 20:45:19 +03:00
|
|
|
interface IBatchTreeUpdateVerifier {
|
2021-02-01 16:40:32 +03:00
|
|
|
function verifyProof(bytes calldata proof, uint256[1] calldata input) external view returns (bool);
|
|
|
|
}
|