10 lines
271 B
Solidity
10 lines
271 B
Solidity
pragma solidity ^0.4.4;
|
|
|
|
|
|
contract ERC20Basic {
|
|
uint public totalSupply;
|
|
function balanceOf(address who) constant returns (uint);
|
|
function transfer(address to, uint value) returns (bool ok);
|
|
event Transfer(address indexed from, address indexed to, uint value);
|
|
}
|