tornado-core/contracts/Mocks/IDeployer.sol

7 lines
190 B
Solidity
Raw Normal View History

2021-02-11 08:29:50 +01:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface IDeployer {
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
}