You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
504 B
16 lines
504 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
8 years ago
|
|
||
7 years ago
|
import "./ERC20Basic.sol";
|
||
8 years ago
|
|
||
|
|
||
8 years ago
|
/**
|
||
|
* @title ERC20 interface
|
||
|
* @dev see https://github.com/ethereum/EIPs/issues/20
|
||
8 years ago
|
*/
|
||
8 years ago
|
contract ERC20 is ERC20Basic {
|
||
7 years ago
|
function allowance(address owner, address spender) public view returns (uint256);
|
||
7 years ago
|
function transferFrom(address from, address to, uint256 value) public returns (bool);
|
||
|
function approve(address spender, uint256 value) public returns (bool);
|
||
8 years ago
|
event Approval(address indexed owner, address indexed spender, uint256 value);
|
||
9 years ago
|
}
|