SimpleToken.sol 670 B

123456789101112131415161718192021
  1. pragma solidity ^0.4.24;
  2. import "../token/ERC20/ERC20.sol";
  3. import "../token/ERC20/ERC20Detailed.sol";
  4. /**
  5. * @title SimpleToken
  6. * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
  7. * Note they can later distribute these tokens as they wish using `transfer` and other
  8. * `ERC20` functions.
  9. */
  10. contract SimpleToken is ERC20, ERC20Detailed {
  11. uint256 public constant INITIAL_SUPPLY = 10000 * (10 ** uint256(decimals()));
  12. /**
  13. * @dev Constructor that gives msg.sender all of existing tokens.
  14. */
  15. constructor () public ERC20Detailed("SimpleToken", "SIM", 18) {
  16. _mint(msg.sender, INITIAL_SUPPLY);
  17. }
  18. }