discover-dapps/contracts/token/TokenFactory.sol

14 lines
322 B
Solidity
Raw Normal View History

2019-04-09 22:24:40 +00:00
pragma solidity ^0.5.2;
2019-04-08 17:28:36 +00:00
2019-04-08 17:28:36 +00:00
contract TokenFactory {
function createCloneToken(
address _parentToken,
uint _snapshotBlock,
2019-04-09 22:24:40 +00:00
string calldata _tokenName,
uint8 _decimalUnits,
2019-04-09 22:24:40 +00:00
string calldata _tokenSymbol,
bool _transfersEnabled
2019-04-09 22:24:40 +00:00
) external returns (address payable);
2019-04-08 17:28:36 +00:00
}