mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-01-09 13:36:07 +01:00
7 lines
190 B
Solidity
7 lines
190 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
interface IDeployer {
|
||
|
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
|
||
|
}
|