meritocracy/contracts/token/TokenFactory.sol
2019-04-09 09:57:03 -04:00

13 lines
323 B
Solidity

pragma solidity ^0.5.0;
contract TokenFactory {
function createCloneToken(
address _parentToken,
uint _snapshotBlock,
string memory _tokenName,
uint8 _decimalUnits,
string memory _tokenSymbol,
bool _transfersEnabled
) public returns (address payable);
}