7 lines
191 B
Solidity
7 lines
191 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.20;
|
|
|
|
interface IDeployer {
|
|
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
|
|
}
|