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.
12 lines
513 B
12 lines
513 B
BasicToken
|
|
=============================================
|
|
|
|
Simpler version of StandardToken, with no allowances
|
|
|
|
balanceOf(address _owner) constant returns (uint balance)
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
Returns the token balance of the passed address.
|
|
|
|
function transfer(address _to, uint _value) returns (bool success)
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
Transfers tokens from sender's account. Amount must not be greater than sender's balance.
|
|
|