Skip to content

Instantly share code, notes, and snippets.

@nazariyv
Created November 22, 2020 11:25
Show Gist options
  • Save nazariyv/75da4ada06e2e2319f07222899f2e9e1 to your computer and use it in GitHub Desktop.
Save nazariyv/75da4ada06e2e2319f07222899f2e9e1 to your computer and use it in GitHub Desktop.
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