https://github.com/alex-bormotov/lazy-nicehash2
Telegram bot for NiceHash
https://github.com/alex-bormotov/lazy-nicehash2
crypto-mining crypto-trading-bot nicehash python telegram-bot
Last synced: 2 months ago
JSON representation
Telegram bot for NiceHash
- Host: GitHub
- URL: https://github.com/alex-bormotov/lazy-nicehash2
- Owner: alex-bormotov
- License: mit
- Created: 2019-10-12T16:56:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T08:55:48.000Z (over 5 years ago)
- Last Synced: 2025-10-07T18:00:01.003Z (9 months ago)
- Topics: crypto-mining, crypto-trading-bot, nicehash, python, telegram-bot
- Language: Python
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lazy-NiceHash2
## Features
> Show wallet balances
> Trade on Nicehash Exchange
> Autoexchange mined BTC to other coin, once a day (for instance)
> Show coin prices
---
### Install
```bash
sudo apt-get update
```
```bash
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
```
```bash
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```
```bash
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
```
```bash
sudo apt-get update
```
```bash
sudo apt-get install docker.io git
```
```bash
git clone https://github.com/alex-bormotov/Lazy-NiceHash2
```
```bash
cd Lazy-NiceHash2
```
```bash
cp config.json.sample config.json
```
> edit config.json
```bash
sudo docker build -t lazy-nicehash2 .
```
```bash
sudo docker run lazy-nicehash2 &
```
---
### Update
```bash
cd Lazy-NiceHash2
```
```bash
sudo docker ps
```
```bash
sudo docker stop CONTAINER ID
```
```bash
sudo docker rm CONTAINER ID
```
```bash
sudo docker rmi Lazy-NiceHash2
```
```bash
git pull origin master
```
```bash
sudo docker build -t lazy-nicehash2 .
```
```bash
sudo docker run lazy-nicehash2 &
```