all files / contracts/zeppelin/token/ ERC20Basic.sol

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18                                   
pragma solidity ^0.4.11;
 
 
/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
    uint256 public totalSupply;
 
    function balanceOf(address who) public view returns (uint256);
 
    function transfer(address to, uint256 value) public returns (bool);
 
    event Transfer(address indexed from, address indexed to, uint256 indexed value);
}