Skip to main content

IEthPoolEscrow

Git Source

Author: StakeWise

Defines the interface for the PoolEscrow contract on Ethereum

Copied from https://github.com/stakewise/contracts/blob/master/contracts/interfaces/IPoolEscrow.sol

Functions

owner

Function for retrieving the address of the current owner

function owner() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the current owner

futureOwner

Function for retrieving the address of the future owner

function futureOwner() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the future owner

commitOwnershipTransfer

Commit contract ownership transfer to a new account (newOwner). Can only be called by the current owner.

function commitOwnershipTransfer(address newOwner) external;

Parameters

NameTypeDescription
newOwneraddressThe address the ownership is planned to be transferred to

applyOwnershipTransfer

Apply contract ownership transfer to a new account (futureOwner). Can only be called by the future owner.

function applyOwnershipTransfer() external;

withdraw

Withdraw balance for a payee, forwarding all gas to the recipient. Can only be called by the current owner.

WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. Make sure you trust the recipient, or are either following the checks-effects-interactions pattern or using ReentrancyGuard.

function withdraw(address payable payee, uint256 amount) external;

Parameters

NameTypeDescription
payeeaddress payableThe address where the funds will be transferred to
amountuint256The amount of ether to transfer to payee

Events

Withdrawn

Event for tracking withdrawn ether

event Withdrawn(address indexed sender, address indexed payee, uint256 amount);

Parameters

NameTypeDescription
senderaddressThe address of the transaction sender
payeeaddressThe address where the funds were transferred to
amountuint256The amount of ether transferred to payee

OwnershipTransferCommitted

Event for tracking ownership transfer commits

event OwnershipTransferCommitted(address indexed currentOwner, address indexed futureOwner);

Parameters

NameTypeDescription
currentOwneraddressThe address of the current owner
futureOwneraddressThe address the ownership is planned to be transferred to

OwnershipTransferApplied

Event for tracking ownership transfers

event OwnershipTransferApplied(address indexed previousOwner, address indexed newOwner);

Parameters

NameTypeDescription
previousOwneraddressThe address the ownership was transferred from
newOwneraddressThe address the ownership was transferred to