tornado-nova/contracts/interfaces/IHasher3.sol

7 lines
161 B
Solidity
Raw Normal View History

2022-05-23 22:35:18 +02:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
interface IHasher3 {
function poseidon(bytes32[3] calldata inputs) external pure returns (bytes32);
}