Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 1.66 KB

ERC20Basic.md

File metadata and controls

76 lines (54 loc) · 1.66 KB

ERC20Basic (ERC20Basic.sol)

↘ 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);

Functions

totalSupply

⤿ Overridden Implementation(s): BasicToken.totalSupply

function totalSupply() public view
returns(uint256)

balanceOf

⤿ Overridden Implementation(s): BasicToken.balanceOf

function balanceOf(address _who) public view
returns(uint256)

Arguments

Name Type Description
_who address

transfer

⤿ Overridden Implementation(s): BasicToken.transfer

function transfer(address _to, uint256 _value) public
returns(bool)

Arguments

Name Type Description
_to address
_value uint256

Contracts