deploy script

This commit is contained in:
poma 2021-02-11 10:29:50 +03:00
parent a359e86f85
commit 8580c5e427
No known key found for this signature in database
GPG key ID: BA20CB01FE165657
4 changed files with 33 additions and 2 deletions

View file

@ -0,0 +1,6 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
interface IDeployer {
function deploy(bytes memory _initCode, bytes32 _salt) external returns (address payable createdContract);
}