instances/contracts/core/Mocks/IDeployer.sol
T-Hax 728eb71388 Force router calls for new instances
Signed-off-by: T-Hax <>
2023-06-12 15:50:25 +00:00

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);
}