BasicToken
contract BasicToken
Source: contracts/tokens/BasicToken.sol
Reference
Functions
balanceOf
function balanceOf(address account) public view returns (uint256)
Gets the balance of the specified address.
- Parameters:
account
- The address to query the the balance of.- Returns:
- An uint256 representing the amount owned by the passed address.
transfer
function transfer(address recipient, uint256 value) public
Transfer token for a specified address.
- Parameters:
recipient
- The address to transfer to.value
- The amount to be transferred.