├── .env-example ├── .github └── images │ └── demo.png ├── .gitignore ├── Dockerfile ├── README-EN.md ├── README.md ├── bot ├── __init__.py ├── config │ ├── __init__.py │ ├── config.py │ └── proxies.txt ├── core │ ├── TLS.py │ ├── __init__.py │ ├── headers.py │ ├── registrator.py │ └── tapper.py ├── exceptions │ └── __init__.py └── utils │ ├── __init__.py │ ├── boosts.py │ ├── graphql.py │ ├── launcher.py │ ├── logger.py │ └── scripts.py ├── docker-compose.yml ├── main.py └── requirements.txt /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/.env-example -------------------------------------------------------------------------------- /.github/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/.github/images/demo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.5' 2 | -------------------------------------------------------------------------------- /bot/config/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import settings 2 | -------------------------------------------------------------------------------- /bot/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/config/config.py -------------------------------------------------------------------------------- /bot/config/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/config/proxies.txt -------------------------------------------------------------------------------- /bot/core/TLS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/core/TLS.py -------------------------------------------------------------------------------- /bot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/core/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/core/headers.py -------------------------------------------------------------------------------- /bot/core/registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/core/registrator.py -------------------------------------------------------------------------------- /bot/core/tapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/core/tapper.py -------------------------------------------------------------------------------- /bot/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/exceptions/__init__.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/__init__.py -------------------------------------------------------------------------------- /bot/utils/boosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/boosts.py -------------------------------------------------------------------------------- /bot/utils/graphql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/graphql.py -------------------------------------------------------------------------------- /bot/utils/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/launcher.py -------------------------------------------------------------------------------- /bot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/logger.py -------------------------------------------------------------------------------- /bot/utils/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/bot/utils/scripts.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shamhi/MemeFiBot/HEAD/requirements.txt --------------------------------------------------------------------------------