discover-dapps/contracts/token/TokenFactory.sol

14 lines
316 B
Solidity
Raw Normal View History

2019-04-08 17:28:36 +00:00
pragma solidity ^0.5.1;
2019-04-08 17:28:36 +00:00
contract TokenFactory {
function createCloneToken(
address _parentToken,
uint _snapshotBlock,
string memory _tokenName,
uint8 _decimalUnits,
string memory _tokenSymbol,
bool _transfersEnabled
) public returns (address payable);
2019-04-08 17:28:36 +00:00
}