You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
839 B

  1. pragma solidity ^0.7.0;
  2. contract ERC20 {
  3. string public constant name = "";
  4. string public constant symbol = "";
  5. uint8 public constant decimals = 0;
  6. /*
  7. function totalSupply() public constant returns (uint);
  8. function balanceOf(address tokenOwner) public constant returns (uint balance);
  9. function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
  10. function transfer(address to, uint tokens) public returns (bool success);
  11. function approve(address spender, uint tokens) public returns (bool success);
  12. function transferFrom(address from, address to, uint tokens) public returns (bool success);
  13. event Transfer(address indexed from, address indexed to, uint tokens);
  14. event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
  15. */
  16. }