Created
November 22, 2020 11:25
-
-
Save nazariyv/75da4ada06e2e2319f07222899f2e9e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity >=0.6.0 <0.7.0; | |
| import "./YourContract.sol"; | |
| contract YourFactory { | |
| event ContractDeployed(address sender, string purpose); | |
| function newYourContract() public { | |
| new YourContract(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment