mirror of
https://github.com/status-im/discover-dapps.git
synced 2025-01-30 04:15:02 +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);
|
|
}
|