Created
April 3, 2019 20:11
-
-
Save crazyrabbitLTC/6ea5bcb5d17283eaae34d8d171148268 to your computer and use it in GitHub Desktop.
Non working solidity code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.5.0; | |
| import "zos-lib/contracts/Initializable.sol"; | |
| import "openzeppelin-eth/contracts/token/ERC20/StandaloneERC20.sol"; | |
| contract Manager is Initializable { | |
| function createStorage(string memory _name, string memory _symbol, | |
| uint8 _decimals, uint256 _initialSupply, address _initialHolder, address[] memory _minters, | |
| address[] memory _pausers) | |
| public{ | |
| StandaloneERC20 erc20 = new StandaloneERC20(); | |
| erc20.initialize(_name, _symbol,_decimals, _initialSupply, _initialHolder,_minters,_pausers); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment