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

17 lines
454 B
Solidity
Raw Normal View History

2017-07-05 10:28:15 +00:00
pragma solidity ^0.4.11;
import './ERC20Basic.sol';
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
2018-07-02 09:14:28 +00:00
function allowance(address owner, address spender) view returns (uint256);
2017-07-05 10:28:15 +00:00
function transferFrom(address from, address to, uint256 value);
function approve(address spender, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}