2021-04-05 00:00:16 +00:00
|
|
|
pragma solidity >=0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
interface AaveInterface {
|
|
|
|
function deposit(address _asset, uint256 _amount, address _onBehalfOf, uint16 _referralCode) external;
|
|
|
|
function withdraw(address _asset, uint256 _amount, address _to) external;
|
|
|
|
function borrow(
|
|
|
|
address _asset,
|
|
|
|
uint256 _amount,
|
|
|
|
uint256 _interestRateMode,
|
|
|
|
uint16 _referralCode,
|
|
|
|
address _onBehalfOf
|
|
|
|
) external;
|
|
|
|
function repay(address _asset, uint256 _amount, uint256 _rateMode, address _onBehalfOf) external;
|
|
|
|
function setUserUseReserveAsCollateral(address _asset, bool _useAsCollateral) external;
|
|
|
|
function getUserAccountData(address user) external view returns (
|
|
|
|
uint256 totalCollateralETH,
|
|
|
|
uint256 totalDebtETH,
|
|
|
|
uint256 availableBorrowsETH,
|
|
|
|
uint256 currentLiquidationThreshold,
|
|
|
|
uint256 ltv,
|
|
|
|
uint256 healthFactor
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface AaveLendingPoolProviderInterface {
|
|
|
|
function getLendingPool() external view returns (address);
|
2021-04-10 21:17:34 +00:00
|
|
|
function getPriceOracle() external view returns (address);
|
2021-04-05 00:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Aave Protocol Data Provider
|
|
|
|
interface AaveDataProviderInterface {
|
|
|
|
function getReserveTokensAddresses(address _asset) external view returns (
|
|
|
|
address aTokenAddress,
|
|
|
|
address stableDebtTokenAddress,
|
|
|
|
address variableDebtTokenAddress
|
|
|
|
);
|
|
|
|
function getUserReserveData(address _asset, address _user) external view returns (
|
|
|
|
uint256 currentATokenBalance,
|
|
|
|
uint256 currentStableDebt,
|
|
|
|
uint256 currentVariableDebt,
|
|
|
|
uint256 principalStableDebt,
|
|
|
|
uint256 scaledVariableDebt,
|
|
|
|
uint256 stableBorrowRate,
|
|
|
|
uint256 liquidityRate,
|
|
|
|
uint40 stableRateLastUpdated,
|
|
|
|
bool usageAsCollateralEnabled
|
|
|
|
);
|
|
|
|
function getReserveConfigurationData(address asset) external view returns (
|
|
|
|
uint256 decimals,
|
|
|
|
uint256 ltv,
|
|
|
|
uint256 liquidationThreshold,
|
|
|
|
uint256 liquidationBonus,
|
|
|
|
uint256 reserveFactor,
|
|
|
|
bool usageAsCollateralEnabled,
|
|
|
|
bool borrowingEnabled,
|
|
|
|
bool stableBorrowRateEnabled,
|
|
|
|
bool isActive,
|
|
|
|
bool isFrozen
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface AaveAddressProviderRegistryInterface {
|
|
|
|
function getAddressesProvidersList() external view returns (address[] memory);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ATokenInterface {
|
|
|
|
function scaledBalanceOf(address _user) external view returns (uint256);
|
|
|
|
function isTransferAllowed(address _user, uint256 _amount) external view returns (bool);
|
|
|
|
function balanceOf(address _user) external view returns(uint256);
|
|
|
|
function transferFrom(address, address, uint) external returns (bool);
|
|
|
|
function approve(address, uint256) external;
|
|
|
|
}
|
|
|
|
|
2021-04-11 14:11:11 +00:00
|
|
|
interface AaveOracleInterface {
|
|
|
|
function getAssetPrice(address _asset) external view returns (uint256);
|
|
|
|
function getAssetsPrices(address[] calldata _assets) external view returns(uint256[] memory);
|
|
|
|
function getSourceOfAsset(address _asset) external view returns(address);
|
|
|
|
function getFallbackOracle() external view returns(address);
|
|
|
|
}
|
|
|
|
|
2021-04-05 00:00:16 +00:00
|
|
|
interface StateSenderInterface {
|
|
|
|
function syncState(address receiver, bytes calldata data) external;
|
|
|
|
function register(address sender, address receiver) external;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IndexInterface {
|
|
|
|
function master() external view returns (address);
|
2021-04-09 01:43:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface FlashloanInterface {
|
|
|
|
function initiateFlashLoan(bytes memory data, uint ethAmt) external;
|
2021-04-10 21:17:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface AavePriceOracle {
|
|
|
|
function getAssetPrice(address _asset) external view returns(uint256);
|
|
|
|
function getAssetsPrices(address[] calldata _assets) external view returns(uint256[] memory);
|
|
|
|
function getSourceOfAsset(address _asset) external view returns(uint256);
|
|
|
|
function getFallbackOracle() external view returns(uint256);
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ChainLinkInterface {
|
|
|
|
function latestAnswer() external view returns (int256);
|
|
|
|
function decimals() external view returns (uint256);
|
2021-04-13 22:43:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface RootChainManagerInterface {
|
2021-04-11 16:53:42 +00:00
|
|
|
function depositFor(address user, address token, bytes calldata depositData) external;
|
2021-04-16 16:47:50 +00:00
|
|
|
}
|