mirror of
https://github.com/tornadocash/tornado-anonymity-mining.git
synced 2024-11-25 11:18:30 +01:00
10 lines
239 B
Solidity
10 lines
239 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
interface ITornadoTrees {
|
||
|
function registerDeposit(address instance, bytes32 commitment) external;
|
||
|
|
||
|
function registerWithdrawal(address instance, bytes32 nullifier) external;
|
||
|
}
|