https://github.com/alex-bormotov/lazy-nicehash
This bot does auto exchange BTC (that was mined) to XRP on NiceHash exchange once a day then sends a notification to Discord.
https://github.com/alex-bormotov/lazy-nicehash
bitcoin cryptocurrency discord-bot exchange nicehash
Last synced: 3 months ago
JSON representation
This bot does auto exchange BTC (that was mined) to XRP on NiceHash exchange once a day then sends a notification to Discord.
- Host: GitHub
- URL: https://github.com/alex-bormotov/lazy-nicehash
- Owner: alex-bormotov
- License: mit
- Created: 2019-10-03T10:40:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T08:53:38.000Z (over 5 years ago)
- Last Synced: 2025-03-23T04:17:32.150Z (over 1 year ago)
- Topics: bitcoin, cryptocurrency, discord-bot, exchange, nicehash
- Language: Python
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lazy-NiceHash
> This bot does auto exchange BTC (that was mined) to XRP on NiceHash exchange once a day then sends a notification to Discord.
---
### Install on Ubuntu (Docker)
```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-nicehash
```
```bash
cd lazy-nicehash
```
```bash
cp config.json.sample config.json
```
> edit config.json
```bash
sudo docker build -t lazy-nicehash .
```
```bash
sudo docker run lazy-nicehash &
```
### Update
```bash
cd lazy-nicehash
```
```bash
sudo docker ps
```
```bash
sudo docker stop CONTAINER ID
```
```bash
sudo docker rm CONTAINER ID
```
```bash
sudo docker rmi lazy-nicehash
```
```bash
git pull origin master
```
```bash
sudo docker build -t lazy-nicehash .
```
```bash
sudo docker run lazy-nicehash &
```