↘ Derived Contracts: BasicToken, ERC20.
ERC20Basic
Simpler version of ERC20 interface See ethereum/EIPs#179
Events
event Transfer(address indexed from, address indexed to, uint256 value);
⤿ Overridden Implementation(s): BasicToken.totalSupply
function totalSupply() public view
returns(uint256)
⤿ Overridden Implementation(s): BasicToken.balanceOf
function balanceOf(address _who) public view
returns(uint256)
Arguments
Name | Type | Description |
---|---|---|
_who | address |
⤿ Overridden Implementation(s): BasicToken.transfer
function transfer(address _to, uint256 _value) public
returns(bool)
Arguments
Name | Type | Description |
---|---|---|
_to | address | |
_value | uint256 |