basictoken.rst 513 B

123456789101112
  1. BasicToken
  2. =============================================
  3. Simpler version of StandardToken, with no allowances
  4. balanceOf(address _owner) constant returns (uint balance)
  5. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  6. Returns the token balance of the passed address.
  7. function transfer(address _to, uint _value) returns (bool success)
  8. """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
  9. Transfers tokens from sender's account. Amount must not be greater than sender's balance.