mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
403 B
Solidity
15 lines
403 B
Solidity
pragma solidity ^0.4.11;
|
|
|
|
|
|
/**
|
|
* @title ERC20Basic
|
|
* @dev Simpler version of ERC20 interface
|
|
* @dev see https://github.com/ethereum/EIPs/issues/20
|
|
*/
|
|
contract ERC20Basic {
|
|
uint256 public totalSupply;
|
|
function balanceOf(address who) public view returns (uint256);
|
|
function transfer(address to, uint256 value) public;
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
}
|