tornado-contracts/contracts/Classic/Mocks/IDeployer.sol

7 lines
193 B
Solidity
Raw Permalink Normal View History

2024-03-29 21:52:45 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
interface IDeployer {
2025-01-05 09:29:24 +00:00
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
2024-03-29 21:52:45 +00:00
}