├── .gitignore ├── LICENSE.md ├── NHB3.sln ├── NHB3 ├── Api.cs ├── ApiConnect.cs ├── ApiForm.Designer.cs ├── ApiForm.cs ├── ApiForm.resx ├── App.config ├── BotForm.Designer.cs ├── BotForm.cs ├── BotForm.resx ├── Home.Designer.cs ├── Home.cs ├── Home.resx ├── NHB3.csproj ├── OrderForm.Designer.cs ├── OrderForm.cs ├── OrderForm.resx ├── PoolForm.Designer.cs ├── PoolForm.cs ├── PoolForm.resx ├── PoolsForm.Designer.cs ├── PoolsForm.cs ├── PoolsForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── README.md └── screenshots ├── 00nhb3.png ├── 01api.png ├── 02pools.png ├── 03pool.png ├── 04order_create.png ├── 05order_refill.png ├── 06order_edit.png ├── 07bot_settings.png ├── 08bot_run.png └── 09_order.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NHB3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3.sln -------------------------------------------------------------------------------- /NHB3/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Api.cs -------------------------------------------------------------------------------- /NHB3/ApiConnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/ApiConnect.cs -------------------------------------------------------------------------------- /NHB3/ApiForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/ApiForm.Designer.cs -------------------------------------------------------------------------------- /NHB3/ApiForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/ApiForm.cs -------------------------------------------------------------------------------- /NHB3/ApiForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/ApiForm.resx -------------------------------------------------------------------------------- /NHB3/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/App.config -------------------------------------------------------------------------------- /NHB3/BotForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/BotForm.Designer.cs -------------------------------------------------------------------------------- /NHB3/BotForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/BotForm.cs -------------------------------------------------------------------------------- /NHB3/BotForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/BotForm.resx -------------------------------------------------------------------------------- /NHB3/Home.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Home.Designer.cs -------------------------------------------------------------------------------- /NHB3/Home.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Home.cs -------------------------------------------------------------------------------- /NHB3/Home.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Home.resx -------------------------------------------------------------------------------- /NHB3/NHB3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/NHB3.csproj -------------------------------------------------------------------------------- /NHB3/OrderForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/OrderForm.Designer.cs -------------------------------------------------------------------------------- /NHB3/OrderForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/OrderForm.cs -------------------------------------------------------------------------------- /NHB3/OrderForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/OrderForm.resx -------------------------------------------------------------------------------- /NHB3/PoolForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolForm.Designer.cs -------------------------------------------------------------------------------- /NHB3/PoolForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolForm.cs -------------------------------------------------------------------------------- /NHB3/PoolForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolForm.resx -------------------------------------------------------------------------------- /NHB3/PoolsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolsForm.Designer.cs -------------------------------------------------------------------------------- /NHB3/PoolsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolsForm.cs -------------------------------------------------------------------------------- /NHB3/PoolsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/PoolsForm.resx -------------------------------------------------------------------------------- /NHB3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Program.cs -------------------------------------------------------------------------------- /NHB3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NHB3/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /NHB3/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Properties/Resources.resx -------------------------------------------------------------------------------- /NHB3/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /NHB3/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/Properties/Settings.settings -------------------------------------------------------------------------------- /NHB3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/NHB3/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/00nhb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/00nhb3.png -------------------------------------------------------------------------------- /screenshots/01api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/01api.png -------------------------------------------------------------------------------- /screenshots/02pools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/02pools.png -------------------------------------------------------------------------------- /screenshots/03pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/03pool.png -------------------------------------------------------------------------------- /screenshots/04order_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/04order_create.png -------------------------------------------------------------------------------- /screenshots/05order_refill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/05order_refill.png -------------------------------------------------------------------------------- /screenshots/06order_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/06order_edit.png -------------------------------------------------------------------------------- /screenshots/07bot_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/07bot_settings.png -------------------------------------------------------------------------------- /screenshots/08bot_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/08bot_run.png -------------------------------------------------------------------------------- /screenshots/09_order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/NiceHashBot/HEAD/screenshots/09_order.png --------------------------------------------------------------------------------