- https://usdta.netlify.app/
-
Joined
Oct 23, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: AGPL-3.0 | |
| pragma solidity ^0.8.0; | |
| import {IPoolAddressesProvider} from '../../interfaces/IPoolAddressesProvider.sol'; | |
| import {IPool} from '../../interfaces/IPool.sol'; | |
| /** | |
| * @title IFlashLoanReceiver | |
| * @author Aave | |
| * @notice Defines the basic interface of a flashloan-receiver contract. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: AGPL-3.0 | |
| pragma solidity ^0.8.0; | |
| import {IPoolAddressesProvider} from '../../interfaces/IPoolAddressesProvider.sol'; | |
| import {IPool} from '../../interfaces/IPool.sol'; | |
| /** | |
| * @title IFlashLoanReceiver | |
| * @author Aave | |
| * @notice Defines the basic interface of a flashloan-receiver contract. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| interface AggregatorV3Interface { | |
| function decimals() external view returns (uint8); | |
| function description() external view returns (string memory); | |
| function version() external view returns (uint256); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| interface AggregatorV3Interface { | |
| function decimals() external view returns (uint8); | |
| function description() external view returns (string memory); | |
| function version() external view returns (uint256); |