Escrow [generic contract]
/contracts/Escrow.sol

event

Deposited 2da466a7

inputs0addresspayee
inputs1uint256weiAmount
event

OwnershipRenounced f8df3114

inputs0addresspreviousOwner
event

OwnershipTransferred 8be0079c

inputs0addresspreviousOwner
inputs1addressnewOwner
event

Withdrawn 7084f547

inputs0addresspayee
inputs1uint256weiAmount
function, payable

deposit f340fa01

Stores the sent amount as credit to be withdrawn.

inputs0address_payee

The destination address of the funds.

function, constant

depositsOf e3a9db1a

inputs0address_payee
function, constant

owner 8da5cb5b

function

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.

function

transferOwnership f2fde38b

Allows the current owner to transfer control of the contract to a newOwner.

inputs0address_newOwner

The address to transfer ownership to.

function

withdraw 51cff8d9

Withdraw accumulated balance for a payee.

inputs0address_payee

The address whose funds will be withdrawn and transferred to.