tornado-nova/contracts/interfaces/IHasher3.sol

7 lines
161 B
Solidity
Raw Normal View History

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