mirror of
https://github.com/tornadocash/tornado-nova
synced 2024-02-02 14:53:56 +01:00
7 lines
161 B
Solidity
7 lines
161 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.7.0;
|
||
|
|
||
|
interface IHasher3 {
|
||
|
function poseidon(bytes32[3] calldata inputs) external pure returns (bytes32);
|
||
|
}
|