https://github.com/tesa-klebeband/ducoforge
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s
https://github.com/tesa-klebeband/ducoforge
duino-coin mining
Last synced: 4 months ago
JSON representation
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s
- Host: GitHub
- URL: https://github.com/tesa-klebeband/ducoforge
- Owner: tesa-klebeband
- License: gpl-3.0
- Created: 2024-02-13T19:35:05.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T11:12:11.000Z (almost 2 years ago)
- Last Synced: 2025-07-27T00:37:55.748Z (11 months ago)
- Topics: duino-coin, mining
- Language: C++
- Homepage:
- Size: 48.8 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DucoForge
DucoForge is a versatile Duino-Coin miner emulator enabling users to simulate mining rigs made from Arduinos, ESP32s and ESP8266s
## Disclaimer
This project is for educational purposes only. Using this tool to mine on the official Duino-Coin network will probably get you banned. Use at your own risk. I am **not** responsible for any damage caused by this project to your account.
## Building
Install the following packages by running the command suitable for your package manager:
- Debian/Ubuntu
```bash
sudo apt update && sudo apt install -y git make libcurl4-openssl-dev build-essential libssl-dev libsfml-dev rapidjson-dev
```
- Fedora
```bash
sudo dnf install -y git make libcurl-devel gcc-c++ openssl-devel sfml-devel rapidjson-devel
```
- Arch
```bash
sudo pacman -Syu --needed git make curl gcc openssl sfml rapidjson
```
Then clone the repository and build the project:
```bash
git clone https://github.com/tesa-klebeband/DucoForge.git
cd DucoForge
make
```
## Using DucoForge
DucoForge relies on a JSON configuration file to run. An example configuration file is provided in the repository. To run DucoForge, simply run the following command:
```bash
build/ducoforge config.json
```
## License
All files within this repo are released under the GNU GPL V3 License as per the LICENSE file stored in the root of this repo.