blob: 0e98779e3ed1ca5bc0e8a65f42879f0a034fc3de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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) constant returns (uint256);
function transfer(address to, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
}
|