mirror of
https://github.com/tornadocash/tornado-anonymity-mining.git
synced 2024-11-22 17:50:21 +01:00
10 lines
243 B
Solidity
10 lines
243 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
interface IHasher {
|
|
function poseidon(bytes32[2] calldata inputs) external pure returns (bytes32);
|
|
|
|
function poseidon(bytes32[3] calldata inputs) external pure returns (bytes32);
|
|
}
|