* update solidity-coverage to ^0.5.0 * update truffle dependency to ^4.1.8 * update solium to ^1.1.7 * update all contracts to solidity ^0.4.23
15 lines
445 B
Solidity
15 lines
445 B
Solidity
pragma solidity ^0.4.23;
|
|
|
|
|
|
/**
|
|
* @title ERC20Basic
|
|
* @dev Simpler version of ERC20 interface
|
|
* @dev see https://github.com/ethereum/EIPs/issues/179
|
|
*/
|
|
contract ERC20Basic {
|
|
function totalSupply() public view returns (uint256);
|
|
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 value);
|
|
}
|