TokenFactory.sol
1 pragma solidity ^0.5.2; 2 3 4 contract TokenFactory { 5 function createCloneToken( 6 address _parentToken, 7 uint _snapshotBlock, 8 string calldata _tokenName, 9 uint8 _decimalUnits, 10 string calldata _tokenSymbol, 11 bool _transfersEnabled 12 ) external returns (address payable); 13 }