mirror of
https://github.com/status-im/meritocracy.git
synced 2025-01-09 21:36:00 +00:00
13 lines
323 B
Solidity
13 lines
323 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
contract TokenFactory {
|
|
function createCloneToken(
|
|
address _parentToken,
|
|
uint _snapshotBlock,
|
|
string memory _tokenName,
|
|
uint8 _decimalUnits,
|
|
string memory _tokenSymbol,
|
|
bool _transfersEnabled
|
|
) public returns (address payable);
|
|
}
|