├── .env ├── .gitignore ├── LICENSE ├── README.md ├── brownie-config.yaml ├── img ├── aave.png └── python.png ├── interfaces ├── AggregatorV3Interface.sol ├── IERC20.sol ├── ILendingPool.sol ├── ILendingPoolAddressesProvider.sol ├── LinkTokenInterface.sol └── WethInterface.sol ├── requirements.txt ├── scripts ├── __init__.py ├── aave_borrow.py └── get_weth.py └── tests └── test_aave_borrow.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/README.md -------------------------------------------------------------------------------- /brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/brownie-config.yaml -------------------------------------------------------------------------------- /img/aave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/img/aave.png -------------------------------------------------------------------------------- /img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/img/python.png -------------------------------------------------------------------------------- /interfaces/AggregatorV3Interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/AggregatorV3Interface.sol -------------------------------------------------------------------------------- /interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/IERC20.sol -------------------------------------------------------------------------------- /interfaces/ILendingPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/ILendingPool.sol -------------------------------------------------------------------------------- /interfaces/ILendingPoolAddressesProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/ILendingPoolAddressesProvider.sol -------------------------------------------------------------------------------- /interfaces/LinkTokenInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/LinkTokenInterface.sol -------------------------------------------------------------------------------- /interfaces/WethInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/interfaces/WethInterface.sol -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | eth-brownie 2 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/aave_borrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/scripts/aave_borrow.py -------------------------------------------------------------------------------- /scripts/get_weth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/scripts/get_weth.py -------------------------------------------------------------------------------- /tests/test_aave_borrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_brownie_py/HEAD/tests/test_aave_borrow.py --------------------------------------------------------------------------------