Approval
8c5be1e5
inputs | 0 | address | owner | |
1 | address | spender | ||
2 | uint256 | value |
OwnershipRenounced
f8df3114
inputs | 0 | address | previousOwner |
OwnershipTransferred
8be0079c
inputs | 0 | address | previousOwner | |
1 | address | newOwner |
Transfer
ddf252ad
inputs | 0 | address | from | |
1 | address | to | ||
2 | uint256 | value |
allowance
dd62ed3e
Function to check the amount of tokens that an owner allowed to a spender.
inputs | 0 | address | _owner | address The address which owns the funds. |
1 | address | _spender | address The address which will spend the funds. | |
outputs | 0 | uint256 |
approve
095ea7b3
Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
inputs | 0 | address | _spender | The address which will spend the funds. |
1 | uint256 | _value | The amount of tokens to be spent. |
balanceOf
70a08231
Gets the balance of the specified address.
inputs | 0 | address | _owner | The address to query the the balance of. |
outputs | 0 | uint256 |
decimals
313ce567
decreaseApproval
66188463
Decrease the amount of tokens that an owner allowed to a spender. approve should be called when allowed[_spender] == 0. To decrement allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol
inputs | 0 | address | _spender | The address which will spend the funds. |
1 | uint256 | _subtractedValue | The amount of tokens to decrease the allowance by. |
increaseApproval
d73dd623
Increase the amount of tokens that an owner allowed to a spender. approve should be called when allowed[_spender] == 0. To increment allowed value is better to use this function to avoid 2 calls (and wait until the first transaction is mined) From MonolithDAO Token.sol
inputs | 0 | address | _spender | The address which will spend the funds. |
1 | uint256 | _addedValue | The amount of tokens to increase the allowance by. |
name
06fdde03
owner
8da5cb5b
renameToken
41cc8912
inputs | 0 | string | _newName | |
1 | string | _newSymbol |
renounceOwnership
715018a6
Renouncing to ownership will leave the contract without an owner. It will not be possible to call the functions with the onlyOwner
modifier anymore.
Allows the current owner to relinquish control of the contract.
symbol
95d89b41
totalSupply
18160ddd
Total number of tokens in existence
transfer
a9059cbb
Transfer token for a specified address, modified to add revert reasons.
inputs | 0 | address | _to | The address to transfer to. |
1 | uint256 | _value | The amount to be transferred. |
transferFrom
23b872dd
ERC20 transferFrom, modified such that an allowance of MAX_UINT represents an unlimited allowance, and to add revert reasons.
inputs | 0 | address | _from | Address to transfer from. |
1 | address | _to | Address to transfer to. | |
2 | uint256 | _value | Amount to transfer. | |
outputs | 0 | bool |
transferOwnership
f2fde38b
Allows the current owner to transfer control of the contract to a newOwner.
inputs | 0 | address | _newOwner | The address to transfer ownership to. |