├── .gitignore ├── LICENSE ├── README.md ├── bots ├── autosellbot │ ├── __init__.py │ ├── autosell_bot.py │ └── test_autosellbot.py └── perpbot │ └── perpbot.py ├── scripts └── create_wallet.py ├── uniswapv2 ├── abi.py ├── get_quotev2.py └── uniswapv2_buy_sell_basic.py └── uniswapv3 ├── abi.py ├── get_quotev3.py └── router02.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /bots/autosellbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bots/autosellbot/autosell_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/bots/autosellbot/autosell_bot.py -------------------------------------------------------------------------------- /bots/autosellbot/test_autosellbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/bots/autosellbot/test_autosellbot.py -------------------------------------------------------------------------------- /bots/perpbot/perpbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/bots/perpbot/perpbot.py -------------------------------------------------------------------------------- /scripts/create_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/scripts/create_wallet.py -------------------------------------------------------------------------------- /uniswapv2/abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv2/abi.py -------------------------------------------------------------------------------- /uniswapv2/get_quotev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv2/get_quotev2.py -------------------------------------------------------------------------------- /uniswapv2/uniswapv2_buy_sell_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv2/uniswapv2_buy_sell_basic.py -------------------------------------------------------------------------------- /uniswapv3/abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv3/abi.py -------------------------------------------------------------------------------- /uniswapv3/get_quotev3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv3/get_quotev3.py -------------------------------------------------------------------------------- /uniswapv3/router02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crjameson/python-defi-tutorials/HEAD/uniswapv3/router02.py --------------------------------------------------------------------------------