Where are Aave interfaces located #43
Answered
by
PatrickAlphaC
AlbertoSinigaglia
asked this question in
Q&A
-
Hi, just a quick clarification, where did you find the Aave contract interface? If I check the Aave profile on github I can find only this: // SPDX-License-Identifier: agpl-3.0
pragma solidity 0.6.12;
interface IWETHGateway {
function depositETH(
address lendingPool,
address onBehalfOf,
uint16 referralCode
) external payable;
function withdrawETH(
address lendingPool,
uint256 amount,
address onBehalfOf
) external;
function repayETH(
address lendingPool,
uint256 amount,
uint256 rateMode,
address onBehalfOf
) external payable;
function borrowETH(
address lendingPool,
uint256 amount,
uint256 interesRateMode,
uint16 referralCode
) external;
} But it's pretty different to your one |
Beta Was this translation helpful? Give feedback.
Answered by
PatrickAlphaC
Sep 20, 2021
Replies: 2 comments 2 replies
-
For my case, I used the following directories: |
Beta Was this translation helpful? Give feedback.
2 replies
-
You can find it in the Aave Docs Interface Section |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PatrickAlphaC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can find it in the Aave Docs Interface Section