├── .env-example ├── .gitignore ├── Dockerfile ├── LICENSE ├── README-RU.md ├── README.md ├── bot ├── __init__.py ├── config │ ├── __init__.py │ └── config.py ├── core │ ├── TgManager │ │ ├── tg_manager.cp310-win_amd64.pyd │ │ ├── tg_manager.cpython-310-darwin.so │ │ └── tg_manager.cpython-310-x86_64-linux-gnu.so │ ├── WalletManager │ │ ├── SolanaManager.cp310-win_amd64.pyd │ │ ├── SolanaManager.cpython-310-darwin.so │ │ ├── SolanaManager.cpython-310-x86_64-linux-gnu.so │ │ ├── WalletManager.cp310-win_amd64.pyd │ │ ├── WalletManager.cpython-310-darwin.so │ │ └── WalletManager.cpython-310-x86_64-linux-gnu.so │ ├── __init__.py │ ├── agents.py │ ├── headers.py │ ├── registrator.py │ └── tapper.py ├── exceptions │ └── __init__.py └── utils │ ├── __init__.py │ ├── accounts.py │ ├── api_checker.py │ ├── file_manager.py │ ├── launcher.py │ ├── logger.py │ └── tg_manager │ ├── PyrogramSession.cp310-win_amd64.pyd │ ├── PyrogramSession.cpython-310-darwin.so │ ├── PyrogramSession.cpython-310-x86_64-linux-gnu.so │ ├── TGSession.cp310-win_amd64.pyd │ ├── TGSession.cpython-310-darwin.so │ ├── TGSession.cpython-310-x86_64-linux-gnu.so │ ├── TelethonSession.cp310-win_amd64.pyd │ ├── TelethonSession.cpython-310-darwin.so │ └── TelethonSession.cpython-310-x86_64-linux-gnu.so ├── docker-compose.yml ├── exchange_data.json ├── main.py ├── requirements.txt ├── run.bat └── run.sh /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README-RU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/README-RU.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/README.md -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0' 2 | -------------------------------------------------------------------------------- /bot/config/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import settings 2 | -------------------------------------------------------------------------------- /bot/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/config/config.py -------------------------------------------------------------------------------- /bot/core/TgManager/tg_manager.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/TgManager/tg_manager.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/core/TgManager/tg_manager.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/TgManager/tg_manager.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/core/TgManager/tg_manager.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/TgManager/tg_manager.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /bot/core/WalletManager/SolanaManager.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/SolanaManager.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/core/WalletManager/SolanaManager.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/SolanaManager.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/core/WalletManager/SolanaManager.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/SolanaManager.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /bot/core/WalletManager/WalletManager.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/WalletManager.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/core/WalletManager/WalletManager.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/WalletManager.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/core/WalletManager/WalletManager.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/WalletManager/WalletManager.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /bot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/core/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/agents.py -------------------------------------------------------------------------------- /bot/core/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/headers.py -------------------------------------------------------------------------------- /bot/core/registrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/registrator.py -------------------------------------------------------------------------------- /bot/core/tapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/core/tapper.py -------------------------------------------------------------------------------- /bot/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/exceptions/__init__.py -------------------------------------------------------------------------------- /bot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/__init__.py -------------------------------------------------------------------------------- /bot/utils/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/accounts.py -------------------------------------------------------------------------------- /bot/utils/api_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/api_checker.py -------------------------------------------------------------------------------- /bot/utils/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/file_manager.py -------------------------------------------------------------------------------- /bot/utils/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/launcher.py -------------------------------------------------------------------------------- /bot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/logger.py -------------------------------------------------------------------------------- /bot/utils/tg_manager/PyrogramSession.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/PyrogramSession.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/utils/tg_manager/PyrogramSession.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/PyrogramSession.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/utils/tg_manager/PyrogramSession.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/PyrogramSession.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /bot/utils/tg_manager/TGSession.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TGSession.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/utils/tg_manager/TGSession.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TGSession.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/utils/tg_manager/TGSession.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TGSession.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /bot/utils/tg_manager/TelethonSession.cp310-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TelethonSession.cp310-win_amd64.pyd -------------------------------------------------------------------------------- /bot/utils/tg_manager/TelethonSession.cpython-310-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TelethonSession.cpython-310-darwin.so -------------------------------------------------------------------------------- /bot/utils/tg_manager/TelethonSession.cpython-310-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/bot/utils/tg_manager/TelethonSession.cpython-310-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exchange_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/exchange_data.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desamod/PawsBot/HEAD/run.sh --------------------------------------------------------------------------------