13 lines
585 B
Solidity
13 lines
585 B
Solidity
contract ERC20 {
|
|
function totalSupply() constant returns (uint);
|
|
function balanceOf(address who) constant returns (uint);
|
|
function allowance(address owner, address spender) constant returns (uint);
|
|
|
|
function transfer(address to, uint value) returns (bool ok);
|
|
function transferFrom(address from, address to, uint value) returns (bool ok);
|
|
function approve(address spender, uint value) returns (bool ok);
|
|
|
|
event Transfer(address indexed from, address indexed to, uint value);
|
|
event Approval(address indexed owner, address indexed spender, uint value);
|
|
}
|