Skip to content

Instantly share code, notes, and snippets.

@tcichowicz
Last active August 16, 2017 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcichowicz/8d24934a0f59048fc01cc6b63a5cfe02 to your computer and use it in GitHub Desktop.
Save tcichowicz/8d24934a0f59048fc01cc6b63a5cfe02 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.15;
import 'contracts/EspeoTokenIco.sol';
contract Factory {
function createContract(address _fundsWallet) returns(address created)
{
return new EspeoTokenIco(_fundsWallet);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment