10 lines
243 B
Solidity
Raw Normal View History

2023-04-08 18:43:42 +00:00
// 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);
}