Skip to content

Latest commit

 

History

History
134 lines (117 loc) · 4.23 KB

IActivePool.md

File metadata and controls

134 lines (117 loc) · 4.23 KB

IActivePool.sol

View Source: contracts/Interfaces/IActivePool.sol

↗ Extends: IPool ↘ Derived Contracts: ActivePool

IActivePool

Events

event BorrowerOperationsAddressChanged(address  _newBorrowerOperationsAddress);
event TroveManagerAddressChanged(address  _newTroveManagerAddress);
event ActivePoolZUSDDebtUpdated(uint256  _ZUSDDebt);
event ActivePoolETHBalanceUpdated(uint256  _ETH);

Functions


sendETH

Send ETH amount to given account. Updates ActivePool balance. Only callable by BorrowerOperations, TroveManager or StabilityPool.

function sendETH(address _account, uint256 _amount) external nonpayable

Arguments

Name Type Description
_account address account to receive the ETH amount
_amount uint256 ETH amount to send
Source Code
function sendETH(address _account, uint _amount) external;

Contracts