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.
14 lines
440 B
14 lines
440 B
pragma solidity ^0.4.24;
|
|
|
|
|
|
/**
|
|
* @title ERC20Basic
|
|
* @dev Simpler version of ERC20 interface
|
|
* 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);
|
|
}
|
|
|