1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-01-31 19:45:53 +00:00
discover/contracts/token/TokenFactory.sol
2019-05-27 17:22:45 +02:00

14 lines
322 B
Solidity

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