Skip to main content

IGnoPoolEscrow

Git Source

Author: StakeWise

Defines the interface for the PoolEscrow contract on Gnosis

Copied from https://github.com/stakewise/contracts/blob/gnosis-chain/contracts/interfaces/IPoolEscrow.sol

Functions

owner

Function for retrieving the address of the current owner.

function owner() external view returns (address);

futureOwner

Function for retrieving the address of the future owner.

function futureOwner() external view returns (address);

commitOwnershipTransfer

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

function commitOwnershipTransfer(address newOwner) external;

applyOwnershipTransfer

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

function applyOwnershipTransfer() external;

withdrawTokens

Withdraw tokens from the escrow. Can only be called by the current owner.

function withdrawTokens(address token, address payee, uint256 amount) external;

Parameters

NameTypeDescription
tokenaddress- the address of the token to transfer.
payeeaddress- the address where the funds will be transferred to.
amountuint256- the amount of tokens to transfer to payee.

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 payable- the address where the funds will be transferred to.
amountuint256- the amount of xDAI to transfer to payee.

Events

Withdrawn

Event for tracking withdrawals.

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

Parameters

NameTypeDescription
senderaddress- the address of the transaction sender.
payeeaddress- the address where the funds were transferred to.
amountuint256- the amount transferred to payee.

OwnershipTransferCommitted

Event for tracking ownership transfer commits.

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

Parameters

NameTypeDescription
currentOwneraddress- the address of the current owner.
futureOwneraddress- the 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
previousOwneraddress- the address the ownership was transferred from.
newOwneraddress- the address the ownership was transferred to.