├── .gitignore ├── README.md ├── bash ├── README.md └── run.sh ├── c# └── connect │ ├── connect.sln │ └── connect │ ├── Api.cs │ ├── App.config │ ├── Connect.cs │ ├── Exch.cs │ ├── Hpo.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── connect.csproj │ └── packages.config ├── generate_key.gif ├── java ├── pom.xml └── src │ └── main │ └── java │ ├── Hpo.java │ └── com │ └── nicehash │ └── connect │ └── Api.java ├── javascript ├── README.md ├── api.js ├── api.ts ├── config.js ├── exchange.js ├── hashpower.js ├── index.js ├── package-lock.json └── package.json └── python ├── README.md ├── nicehash.py └── test_bot.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | javascript/node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/README.md -------------------------------------------------------------------------------- /bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/bash/README.md -------------------------------------------------------------------------------- /bash/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/bash/run.sh -------------------------------------------------------------------------------- /c#/connect/connect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect.sln -------------------------------------------------------------------------------- /c#/connect/connect/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/Api.cs -------------------------------------------------------------------------------- /c#/connect/connect/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/App.config -------------------------------------------------------------------------------- /c#/connect/connect/Connect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/Connect.cs -------------------------------------------------------------------------------- /c#/connect/connect/Exch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/Exch.cs -------------------------------------------------------------------------------- /c#/connect/connect/Hpo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/Hpo.cs -------------------------------------------------------------------------------- /c#/connect/connect/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /c#/connect/connect/connect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/connect.csproj -------------------------------------------------------------------------------- /c#/connect/connect/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/c#/connect/connect/packages.config -------------------------------------------------------------------------------- /generate_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/generate_key.gif -------------------------------------------------------------------------------- /java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/java/pom.xml -------------------------------------------------------------------------------- /java/src/main/java/Hpo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/java/src/main/java/Hpo.java -------------------------------------------------------------------------------- /java/src/main/java/com/nicehash/connect/Api.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/java/src/main/java/com/nicehash/connect/Api.java -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/README.md -------------------------------------------------------------------------------- /javascript/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/api.js -------------------------------------------------------------------------------- /javascript/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/api.ts -------------------------------------------------------------------------------- /javascript/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/config.js -------------------------------------------------------------------------------- /javascript/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/exchange.js -------------------------------------------------------------------------------- /javascript/hashpower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/hashpower.js -------------------------------------------------------------------------------- /javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/index.js -------------------------------------------------------------------------------- /javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/package-lock.json -------------------------------------------------------------------------------- /javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/javascript/package.json -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/python/README.md -------------------------------------------------------------------------------- /python/nicehash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/python/nicehash.py -------------------------------------------------------------------------------- /python/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicehash/rest-clients-demo/HEAD/python/test_bot.py --------------------------------------------------------------------------------