IERC20
ERC20 interface
see https://github.com/ethereum/EIPs/issues/20
Methods
allowance
Parameters
Name
Type
Description
owner
address
undefined
spender
address
undefined
Returns
Name
Type
Description
_0
uint256
undefined
approve
Parameters
Name
Type
Description
spender
address
undefined
value
uint256
undefined
Returns
Name
Type
Description
_0
bool
undefined
balanceOf
Parameters
Name
Type
Description
who
address
undefined
Returns
Name
Type
Description
_0
uint256
undefined
totalSupply
Returns
Name
Type
Description
_0
uint256
undefined
transfer
Parameters
Name
Type
Description
to
address
undefined
value
uint256
undefined
Returns
Name
Type
Description
_0
bool
undefined
transferFrom
Parameters
Name
Type
Description
from
address
undefined
to
address
undefined
value
uint256
undefined
Returns
Name
Type
Description
_0
bool
undefined
Events
Approval
Parameters
Name
Type
Description
owner indexed
address
undefined
spender indexed
address
undefined
value
uint256
undefined
Transfer
Parameters
Name
Type
Description
from indexed
address
undefined
to indexed
address
undefined
value
uint256
undefined
Last updated