├── .idea └── .gitignore ├── INSTALL.bat ├── README.md ├── START.bat ├── core ├── __init__.py ├── base_client.py ├── captcha.py ├── models │ ├── __init__.py │ ├── account.py │ └── exceptions.py ├── nodepay_client.py ├── static │ ├── background.avif │ ├── faviconV2.png │ ├── logo.png │ └── main.avif └── utils │ ├── __init__.py │ ├── account_manager.py │ ├── bot.py │ ├── file_manager.py │ ├── logger.py │ ├── person.py │ └── proxy_manager.py ├── customtkinter_gui.py ├── data ├── accounts.txt ├── proxies.txt └── settings.ini ├── main.py └── requirements.txt /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /INSTALL.bat: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt 2 | pause -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/README.md -------------------------------------------------------------------------------- /START.bat: -------------------------------------------------------------------------------- 1 | python main.py 2 | pause -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/base_client.py -------------------------------------------------------------------------------- /core/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/captcha.py -------------------------------------------------------------------------------- /core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/models/account.py -------------------------------------------------------------------------------- /core/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/models/exceptions.py -------------------------------------------------------------------------------- /core/nodepay_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/nodepay_client.py -------------------------------------------------------------------------------- /core/static/background.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/static/background.avif -------------------------------------------------------------------------------- /core/static/faviconV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/static/faviconV2.png -------------------------------------------------------------------------------- /core/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/static/logo.png -------------------------------------------------------------------------------- /core/static/main.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/static/main.avif -------------------------------------------------------------------------------- /core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/__init__.py -------------------------------------------------------------------------------- /core/utils/account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/account_manager.py -------------------------------------------------------------------------------- /core/utils/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/bot.py -------------------------------------------------------------------------------- /core/utils/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/file_manager.py -------------------------------------------------------------------------------- /core/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/logger.py -------------------------------------------------------------------------------- /core/utils/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/person.py -------------------------------------------------------------------------------- /core/utils/proxy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/core/utils/proxy_manager.py -------------------------------------------------------------------------------- /customtkinter_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/customtkinter_gui.py -------------------------------------------------------------------------------- /data/accounts.txt: -------------------------------------------------------------------------------- 1 | asdasd1222c@gmail.com:3pQ2sm,@sDE/g 2 | -------------------------------------------------------------------------------- /data/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/data/proxies.txt -------------------------------------------------------------------------------- /data/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/data/settings.ini -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GzGod/Nodepay/HEAD/requirements.txt --------------------------------------------------------------------------------