mirror of
https://github.com/dap-ps/discover.git
synced 2025-01-31 19:45:53 +00:00
14 lines
322 B
Solidity
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);
|
||
|
}
|