2020-12-15 18:08:37 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2021-08-13 17:05:23 +03:00
|
|
|
pragma solidity >=0.6.0 <0.8.0;
|
2020-12-15 18:08:37 +03:00
|
|
|
|
|
|
|
interface ITornadoTrees {
|
|
|
|
function registerDeposit(address instance, bytes32 commitment) external;
|
|
|
|
|
|
|
|
function registerWithdrawal(address instance, bytes32 nullifier) external;
|
|
|
|
}
|