ERC20Basic.sol 419 B

1234567891011121314
  1. pragma solidity ^0.4.18;
  2. /**
  3. * @title ERC20Basic
  4. * @dev Simpler version of ERC20 interface
  5. * @dev see https://github.com/ethereum/EIPs/issues/179
  6. */
  7. contract ERC20Basic {
  8. uint256 public totalSupply;
  9. function balanceOf(address who) public view returns (uint256);
  10. function transfer(address to, uint256 value) public returns (bool);
  11. event Transfer(address indexed from, address indexed to, uint256 value);
  12. }