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.
15 lines
362 B
15 lines
362 B
8 years ago
|
pragma solidity ^0.4.4;
|
||
|
|
||
|
|
||
|
/*
|
||
|
* ERC20Basic
|
||
|
* Simpler version of ERC20 interface
|
||
|
* see https://github.com/ethereum/EIPs/issues/20
|
||
|
*/
|
||
|
contract ERC20Basic {
|
||
|
uint public totalSupply;
|
||
|
function balanceOf(address who) constant returns (uint);
|
||
|
function transfer(address to, uint value);
|
||
|
event Transfer(address indexed from, address indexed to, uint value);
|
||
|
}
|