0x24d83713…00a0sent to0xf94aa98b…e9e6·#6,905,424·view on Etherscan
Hey awesome sounds great, I'll do it. I'm using this contract inheriting from the new open zeppelin (2). So if it could be done on this one it would be fantastic. I'm using Remix IDE to compile not that it matters to much.
https://github.com/OpenZeppelin/openzeppelin-solidity
------------------------------------------------------------------------------------------------------------------------------------
pragma solidity ^0.4.24;
import "./ERC20Pausable.sol";
import "./ERC20Burnable.sol";
import "./ERC20Capped.sol";
contract Simpletoken is ERC20Pausable, ERC20Capped, ERC20Burnable {
uint256 public constant INITIAL_SUPPLY = 100000000000000000000000000000 * (10);
uint constant public decimals = 18;
string constant public name = "Simple";
string constant public symbol = "SMP";
constructor (uint256 cap) public ERC20Capped(cap) {
_mint(msg.sender, INITIAL_SUPPLY);
}
}