DelayedReleaseToken
/contracts/token/DelayedReleaseToken.sol

Project Wyvern Developers

event

Approval 8c5be1e5

inputs0addressowner
inputs1addressspender
inputs2uint256value
event

TokensReleased c7798891

inputs0addressdestination
inputs1uint256numberOfTokens
event

Transfer ddf252ad

inputs0addressfrom
inputs1addressto
inputs2uint256value
function, constant

allowance dd62ed3e

Function to check the amount of tokens that an owner allowed to a spender.

inputs0address_owner

address The address which owns the funds.

inputs1address_spender

address The address which will spend the funds.

outputs0uint256
function

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

inputs0address_spender

The address which will spend the funds.

inputs1uint256_value

The amount of tokens to be spent.

function, constant

balanceOf 70a08231

Gets the balance of the specified address.

inputs0address_owner

The address to query the the balance of.

outputs0uint256balance
function

decreaseApproval 66188463

inputs0address_spender
inputs1uint256_subtractedValue
function

increaseApproval d73dd623

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

inputs0address_spender
inputs1uint256_addedValue
function

releaseTokens 87b0be48

Release the previously specified amount of tokens to the provided address

inputs0addressdestination

Address for which tokens will be released (minted)

function, constant

totalSupply 18160ddd

function

transfer a9059cbb

transfer token for a specified address

inputs0address_to

The address to transfer to.

inputs1uint256_value

The amount to be transferred.

function

transferFrom 23b872dd

Transfer tokens from one address to another

inputs0address_from

address The address which you want to send tokens from

inputs1address_to

address The address which you want to transfer to

inputs2uint256_value

uint256 the amount of tokens to be transferred