memoscan
← all memos

Memo 0x10f81db1…333c63 on Ethereum

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); } }