├── .github ├── DISCUSSION_TEMPLATE │ └── ideas.yml └── ISSUE_TEMPLATE │ ├── 10_bug_report.yml │ └── config.yml ├── .gitignore ├── .winget ├── Docker ├── Dockerfile └── docker-compose.yml ├── LICENSE ├── README.MD ├── SECURITY.md ├── add_account.py ├── change_lic.py ├── config.py.sample ├── database_migrations └── 1.sql ├── main.py ├── mcf_utils ├── Git.py ├── api.py ├── database.py ├── logColors.py ├── modules.py ├── modules_thread.py ├── tgAccount.py ├── tgPyrogram.py ├── tgTelethon.py ├── utils.py ├── variables.py └── webserver.py ├── requirements.txt ├── start_linux.sh ├── start_windows.cmd ├── telegram_accounts └── update_proxies.py └── web ├── controllers ├── admin.py └── auth.py ├── input.css ├── package.json ├── public_html ├── admin │ ├── accounts.html │ ├── add_bot.html │ ├── bots.html │ ├── change_license.html │ ├── dashboard.html │ ├── restarting.html │ ├── settings.html │ └── updating.html ├── auth │ └── login.html ├── css │ ├── fontawesome-free-6.6.0-web │ │ ├── LICENSE.txt │ │ ├── css │ │ │ └── all.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ └── main.css ├── images │ ├── Screenshot1.png │ ├── github_star.png │ └── video_thumb.jpg ├── index.html ├── js │ ├── chart.umd.min.js │ └── multiselect-dropdown.js └── robots.txt ├── tailwind.config.js └── tailwind_start.cmd /.github/DISCUSSION_TEMPLATE/ideas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/.github/DISCUSSION_TEMPLATE/ideas.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/.github/ISSUE_TEMPLATE/10_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.winget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/.winget -------------------------------------------------------------------------------- /Docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/Docker/Dockerfile -------------------------------------------------------------------------------- /Docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/Docker/docker-compose.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/README.MD -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /add_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/add_account.py -------------------------------------------------------------------------------- /change_lic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/change_lic.py -------------------------------------------------------------------------------- /config.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/config.py.sample -------------------------------------------------------------------------------- /database_migrations/1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/database_migrations/1.sql -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/main.py -------------------------------------------------------------------------------- /mcf_utils/Git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/Git.py -------------------------------------------------------------------------------- /mcf_utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/api.py -------------------------------------------------------------------------------- /mcf_utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/database.py -------------------------------------------------------------------------------- /mcf_utils/logColors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/logColors.py -------------------------------------------------------------------------------- /mcf_utils/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/modules.py -------------------------------------------------------------------------------- /mcf_utils/modules_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/modules_thread.py -------------------------------------------------------------------------------- /mcf_utils/tgAccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/tgAccount.py -------------------------------------------------------------------------------- /mcf_utils/tgPyrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/tgPyrogram.py -------------------------------------------------------------------------------- /mcf_utils/tgTelethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/tgTelethon.py -------------------------------------------------------------------------------- /mcf_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/utils.py -------------------------------------------------------------------------------- /mcf_utils/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/variables.py -------------------------------------------------------------------------------- /mcf_utils/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/mcf_utils/webserver.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /start_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/start_linux.sh -------------------------------------------------------------------------------- /start_windows.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/start_windows.cmd -------------------------------------------------------------------------------- /telegram_accounts/update_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/telegram_accounts/update_proxies.py -------------------------------------------------------------------------------- /web/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/controllers/admin.py -------------------------------------------------------------------------------- /web/controllers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/controllers/auth.py -------------------------------------------------------------------------------- /web/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/input.css -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public_html/admin/accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/accounts.html -------------------------------------------------------------------------------- /web/public_html/admin/add_bot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/add_bot.html -------------------------------------------------------------------------------- /web/public_html/admin/bots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/bots.html -------------------------------------------------------------------------------- /web/public_html/admin/change_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/change_license.html -------------------------------------------------------------------------------- /web/public_html/admin/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/dashboard.html -------------------------------------------------------------------------------- /web/public_html/admin/restarting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/restarting.html -------------------------------------------------------------------------------- /web/public_html/admin/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/settings.html -------------------------------------------------------------------------------- /web/public_html/admin/updating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/admin/updating.html -------------------------------------------------------------------------------- /web/public_html/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/auth/login.html -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/LICENSE.txt -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/css/all.min.css -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/fontawesome-free-6.6.0-web/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /web/public_html/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/css/main.css -------------------------------------------------------------------------------- /web/public_html/images/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/images/Screenshot1.png -------------------------------------------------------------------------------- /web/public_html/images/github_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/images/github_star.png -------------------------------------------------------------------------------- /web/public_html/images/video_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/images/video_thumb.jpg -------------------------------------------------------------------------------- /web/public_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/index.html -------------------------------------------------------------------------------- /web/public_html/js/chart.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/js/chart.umd.min.js -------------------------------------------------------------------------------- /web/public_html/js/multiselect-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/public_html/js/multiselect-dropdown.js -------------------------------------------------------------------------------- /web/public_html/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /web/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/tailwind.config.js -------------------------------------------------------------------------------- /web/tailwind_start.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MasterCryptoFarmBot/HEAD/web/tailwind_start.cmd --------------------------------------------------------------------------------