├── .gitignore ├── README.md ├── config.yml ├── gnd_logging.py ├── grin51.py ├── grin_nicehash_defender.py ├── nicehash_api.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | *.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/config.yml -------------------------------------------------------------------------------- /gnd_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/gnd_logging.py -------------------------------------------------------------------------------- /grin51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/grin51.py -------------------------------------------------------------------------------- /grin_nicehash_defender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/grin_nicehash_defender.py -------------------------------------------------------------------------------- /nicehash_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bladedoyle/grin_nicehash_defender/HEAD/nicehash_api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | --------------------------------------------------------------------------------