tornado-pool-factory/contracts/tornado_proxy/ITornadoTrees.sol

10 lines
239 B
Solidity
Raw Normal View History

2021-10-24 21:54:07 +02:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
interface ITornadoTrees {
function registerDeposit(address instance, bytes32 commitment) external;
function registerWithdrawal(address instance, bytes32 nullifier) external;
}