├── .env ├── .gitignore ├── LICENSE ├── README.md ├── aave_borrow_web3.py ├── abis.py ├── config.yaml ├── get_weth.py ├── img ├── aave.png └── python.png └── requirements.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/README.md -------------------------------------------------------------------------------- /aave_borrow_web3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/aave_borrow_web3.py -------------------------------------------------------------------------------- /abis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/abis.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/config.yaml -------------------------------------------------------------------------------- /get_weth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/get_weth.py -------------------------------------------------------------------------------- /img/aave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/img/aave.png -------------------------------------------------------------------------------- /img/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/img/python.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/aave_web3_py/HEAD/requirements.txt --------------------------------------------------------------------------------