mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
18 lines
790 B
Solidity
18 lines
790 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.6;
|
|
|
|
interface StabilityPoolLike {
|
|
function provideToSP(uint _amount, address _frontEndTag) external;
|
|
function withdrawFromSP(uint _amount) external;
|
|
function withdrawETHGainToTrove(address _upperHint, address _lowerHint) external;
|
|
function getDepositorETHGain(address _depositor) external view returns (uint);
|
|
function getDepositorLQTYGain(address _depositor) external view returns (uint);
|
|
function getCompoundedLUSDDeposit(address _depositor) external view returns (uint);
|
|
}
|
|
|
|
interface BAMMLike {
|
|
function deposit(uint lusdAmount) external;
|
|
function withdraw(uint numShares) external;
|
|
function balanceOf(address a) external view returns(uint);
|
|
function totalSupply() external view returns(uint);
|
|
} |