├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── get_v3_tx.py ├── package.json ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt └── src ├── agent.py └── test_agent.py /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | forta.config.json 4 | .env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/README.md -------------------------------------------------------------------------------- /get_v3_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/get_v3_tx.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/package.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | forta_agent>=0.1.16 2 | setuptools>=61.3.1 -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /src/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/src/agent.py -------------------------------------------------------------------------------- /src/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/flashloan-forta-py/HEAD/src/test_agent.py --------------------------------------------------------------------------------