mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-12-28 07:39:22 -05:00
7 lines
190 B
Solidity
7 lines
190 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
interface IDeployer {
|
|
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
|
|
}
|