EIP 20 Non Standard Interface
Last updated
Last updated
EIP20NonStandardInterface
Version of ERC20 with no return values for transfer
and transferFrom
See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
Get the current allowance from owner
for spender
owner
address
The address of the account which owns the tokens to be spent
spender
address
The address of the account which may transfer tokens return The number of tokens allowed to be spent
remaining
uint256
undefined
Approve spender
to transfer up to amount
from src
This will overwrite the approval amount for spender
and is subject to issues noted
spender
address
The address of the account which may transfer tokens
amount
uint256
The number of tokens that are approved return Whether or not the approval succeeded
success
bool
undefined
Gets the balance of the specified address
owner
address
The address from which the balance will be retrieved
balance
uint256
undefined
Get the total number of tokens in circulation
_0
uint256
The supply of tokens
Transfer amount
tokens from msg.sender
to dst
dst
address
The address of the destination account
amount
uint256
The number of tokens to transfer
Transfer amount
tokens from src
to dst
src
address
The address of the source account
dst
address
The address of the destination account
amount
uint256
The number of tokens to transfer
owner indexed
address
undefined
spender indexed
address
undefined
amount
uint256
undefined
from indexed
address
undefined
to indexed
address
undefined
amount
uint256
undefined