solidity/test/compilationTests/zeppelin/token/ERC20Basic.sol

15 lines
403 B
Solidity
Raw Normal View History

2017-07-05 10:28:15 +00:00
pragma solidity ^0.4.11;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20Basic {
uint256 public totalSupply;
2018-07-04 17:20:51 +00:00
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public;
2017-07-05 10:28:15 +00:00
event Transfer(address indexed from, address indexed to, uint256 value);
}