discover-dapps/contracts/token/TokenFactory.sol

14 lines
322 B
Solidity
Raw Normal View History

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