735546619e
Signed-off-by: T-Hax <>
10 lines
247 B
Solidity
10 lines
247 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity >=0.6.0 <0.8.0;
|
|
|
|
interface ITornadoTrees {
|
|
function registerDeposit(address instance, bytes32 commitment) external;
|
|
|
|
function registerWithdrawal(address instance, bytes32 nullifier) external;
|
|
}
|